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/model-context-protocol.mdx
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,17 +21,23 @@ When an AI application connects to your documentation MCP server, it can search
21
21
- Each tool call happens during the generation process, so the AI application uses up-to-date information from your documentation to generate its response.
22
22
23
23
<Tip>
24
-
Some AI tools like Claude support both MCP and Skills. MCP gives the AI access to your documentation content, while Skills instruct the AI how to use that content effectively. They're complementary. MCP provides the data and Skills provide the instructions.
24
+
Some AI tools like Claude support both MCP and skills. MCP gives access to your documentation content, while skills instruct agents how to use that content effectively. They're complementary and connecting your MCP server gives agents access to both.
25
25
</Tip>
26
26
27
27
### MCP tools
28
28
29
-
Your MCP server provides two tools that AI applications can use:
29
+
Your MCP server provides two tools that agents can use:
30
30
31
-
-**Search**: Searches across your documentation to find relevant content, returning snippets with titles and links. Use this when you need to discover information or find pages matching a query.
32
-
-**Get page**: Retrieves the full content of a specific documentation page by its path. Use this when you already know the page path, such as from search results, and need the complete content rather than a snippet.
31
+
-**Search**: Searches across your documentation to find relevant content, returning snippets with titles and links. Use this to discover information or find pages matching a query.
32
+
-**Query docs filesystem**: Reads and navigates your documentation's virtual filesystem using shell-style commands. Use this to retrieve page content, browse the docs structure, or extract specific sections—including batch reads across multiple pages in a single call.
33
33
34
-
AI applications determine when to use each tool based on the context of the conversation. For example, an AI application might first search your documentation to find relevant pages, then use the get page tool to retrieve the full content of the most relevant result.
34
+
Agents determine when to use each tool based on the context of the conversation. For example, an agent might first search your documentation to find relevant pages, then use the query docs filesystem tool to read the full content of the most relevant results.
35
+
36
+
### MCP resources
37
+
38
+
Your MCP server also exposes your [skill.md files](/ai/skillmd) as MCP resources. Agents connected to your MCP server can discover and access your skill files without installing them separately.
39
+
40
+
`Skill.md` resources appear in the MCP server's resource list and contain the capability descriptions Mintlify generates or that you define in your [custom skill files](/ai/skillmd#custom-skill-files).
35
41
36
42
### Search parameters
37
43
@@ -44,12 +50,6 @@ The MCP search tool supports optional parameters that AI applications use to con
44
50
45
51
AI applications determine when to apply these parameters based on the context of the user's query. For example, if a user asks about a specific API version, the AI application may automatically apply the appropriate filter to provide more relevant results.
46
52
47
-
### Get page parameters
48
-
49
-
The get page tool accepts one required parameter:
50
-
51
-
-**`page`**: The page path to retrieve, such as `'api-reference/create-customer'`. Use page paths returned from search results.
52
-
53
53
### MCP compared to web search
54
54
55
55
AI tools can search the web, but MCP provides distinct advantages for documentation.
@@ -196,9 +196,9 @@ To protect availability, Mintlify applies rate limits to MCP servers.
196
196
| :---- | :---- | :---------- |
197
197
| Per user (IP address) | 5,000 requests per hour | Limits how frequently a single user can query your MCP server configuration. |
198
198
| Search per documentation site (domain) | 10,000 requests per hour | Limits total search tool calls across all users of your MCP server. |
199
-
|Get page per documentation site (domain) | 10,000 requests per hour | Limits total get page tool calls across all users of your MCP server. |
199
+
|Query docs filesystem per documentation site (domain) | 10,000 requests per hour | Limits total query docs filesystem tool calls across all users of your MCP server. |
200
200
| Authenticated search per documentation site (domain) | 5,000 requests per hour | Limits total authenticated search tool calls across all users of your MCP server. |
201
-
| Authenticated get page per documentation site (domain) | 5,000 requests per hour | Limits total authenticated get page tool calls across all users of your MCP server. |
201
+
| Authenticated query docs filesystem per documentation site (domain) | 5,000 requests per hour | Limits total authenticated query docs filesystem tool calls across all users of your MCP server. |
Copy file name to clipboardExpand all lines: ai/skillmd.mdx
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,12 +28,12 @@ View your `skill.md` by appending `/skill.md` to your documentation site's URL.
28
28
## Use `skill.md` files with agents
29
29
30
30
<Note>
31
-
If you use a [reverse proxy](/deploy/reverse-proxy), configure it to forward
32
-
`/skill.md`, `/.well-known/skills/*`, and `/.well-known/agent-skills/*` paths
33
-
to your Mintlify subdomain.
31
+
If you use a [reverse proxy](/deploy/reverse-proxy), configure it to forward `/skill.md`, `/.well-known/skills/*`, and `/.well-known/agent-skills/*` paths to your Mintlify subdomain.
34
32
</Note>
35
33
36
-
Agents can process your `skill.md` with the [skills CLI](https://www.npmjs.com/package/skills).
34
+
When users connect to your MCP server, their agents can discover and use your `skill.md` files as [MCP resources](/ai/model-context-protocol#mcp-resources) without installing the skills separately.
35
+
36
+
To add your skills to an agent's context manually, use the [skills CLI](https://www.npmjs.com/package/skills).
0 commit comments