You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ai-assistance.mdx
+43-25Lines changed: 43 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,49 +4,67 @@ description: Large Language Models (LLMs) are powerful tools for exploring and l
4
4
icon: brain-circuit
5
5
---
6
6
7
-
## Providing complete Tilebox context
7
+
## Tilebox MCP Server
8
8
9
-
AI assistants and Large Language Models (LLMs) can answer questions, guide you in using Tilebox, suggest relevant sections in the documentation, and assist you in creating workflows.
9
+
The Model Context Protocol (MCP) is an open protocol that creates standardized connections between AI applications and
10
+
external services. Tilebox provides such an MCP server that exposes tools for listing, querying and retrieving the schema
11
+
of datasets, as well as tools for interacting with workflows.
10
12
11
-
<Cardtitle="Download documentation for LLMs"icon="brain-circuit"href="https://docs.tilebox.com/llms-full.txt"horizontal>
12
-
Download the complete Tilebox documentation as a plain text file to share with your AI assistant or language model.
13
-
</Card>
14
-
15
-
The full content of the Tilebox documentation is available in plain markdown format at [https://docs.tilebox.com/llms-full.txt](https://docs.tilebox.com/llms-full.txt). Upload this document to your AI assistant or LLM to provide it with Tilebox-specific context.
16
-
17
-
<Tip>
18
-
The [Documentation Context](https://docs.tilebox.com/llms-full.txt) is updated whenever the documentation changes. If you download the file, refresh it occasionally to stay up-to-date.
19
-
</Tip>
20
-
21
-
## Providing tailored context via MCP
13
+
### How the Tilebox MCP servers can help
22
14
23
-
Tilebox Docs can be installed as an MCP tool, so an MCP client can ask for detailed context on specific topics.
15
+
When an AI tool like Claude, Cursor, or ChatGPT has the Tilebox MCP server configured, it can proactively invoke relevant
16
+
tools. For example, when asking a question about a specific dataset, the AI tool can query the Tilebox MCP server for the
17
+
dataset schema and include the correct, and up-to-date information about it in the response.
24
18
25
-
### For Claude Desktop
19
+
Tilebox provides two MCP servers:
26
20
27
-
Run the following command to add Tilebox Docs to Claude:
21
+
-`https://mcp.tilebox.com/` - This MCP server provides tools for accessing and interacting with Tilebox datasets and workflows. It requires authentication using a Tilebox API key.
22
+
-`https://docs.tilebox.com/mcp` - This MCP server provides access to the Tilebox documentation. It does not require authentication. When configured, AI agents can ask for detailed context on specific topics.
28
23
29
-
```bash
30
-
claude mcp add --transport http "Tilebox Docs" https://docs.tilebox.com/mcp
31
-
```
24
+
Together, these two MCP servers provide a powerful way to interact with Tilebox using AI tools. A coding assistant can learn how to use and write code against Tilebox APIs (by using and exploring the docs), but then also specifically customize the code depending on actually available datasets, and their exact schema, queried from the Tilebox MCP server.
32
25
33
-
### For other MCP clients
26
+
### Configuring the Tilebox MCP servers
34
27
35
-
1. Open command palette (Cmd+Shift+P / Ctrl+Shift+P)
36
-
2. Search "Open MCP settings"
37
-
3. Select "Add custom MCP"
38
-
4. Add to mcp.json:
28
+
To configure your AI tools to use the Tilebox MCP servers, you need to point it to the correct URLs using the `http` transport.
29
+
Additionally you'll need to provide an `Authorization` header with your Tilebox API key as the bearer token for the `https://mcp.tilebox.com/` server.
39
30
40
31
```json
41
32
{
42
33
"mcpServers": {
34
+
"tilebox": {
35
+
"url": "https://mcp.tilebox.com/",
36
+
"headers": {
37
+
"Authorization": "Bearer <YOUR_TILEBOX_API_KEY>"
38
+
}
39
+
},
43
40
"tilebox-docs": {
44
41
"url": "https://docs.tilebox.com/mcp"
45
42
}
46
43
}
47
44
}
48
45
```
49
46
47
+
### For Claude Desktop
48
+
49
+
Run the following commands to add the Tilebox MCP server to Claude:
claude mcp add --transport http "Tilebox Docs" https://docs.tilebox.com/mcp
54
+
```
55
+
56
+
## Providing the full Tilebox documentation as context
57
+
58
+
Rather than relying on the Tilebox Docs MCP server, you can also provide the full Tilebox documentation as context to your AI assistant or language model.
59
+
To do so, you can download the complete documentation as a plain text file below. This is an alternative to configuring the `https://docs.tilebox.com/mcp` MCP server.
60
+
61
+
<Cardtitle="Download documentation for LLMs"icon="brain-circuit"href="https://docs.tilebox.com/llms-full.txt"horizontal>
62
+
Download the complete Tilebox documentation as a plain text file to share with your AI assistant or language model.
63
+
</Card>
64
+
65
+
The full content of the Tilebox documentation is available in plain markdown format at [https://docs.tilebox.com/llms-full.txt](https://docs.tilebox.com/llms-full.txt). Upload this document to your AI assistant or LLM to provide it with Tilebox-specific context.
66
+
50
67
<Tip>
51
-
The MCP server always retrieves the most up to date version of the documentation.
68
+
The [Documentation Context](https://docs.tilebox.com/llms-full.txt) is updated whenever the documentation changes. If you download the file, refresh it occasionally to stay up-to-date.
0 commit comments