- Home
- MCP servers
- Mintlify
Mintlify
- javascript
7
GitHub Stars
javascript
Language
3 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"vigtu-mintlify-mcp": {
"command": "bunx",
"args": [
"mintlify-mcp",
"--project",
"agno-v2"
]
}
}
}You can query any Mintlify-powered documentation directly from Claude Code using this MCP server. It lets you ask questions, get code examples, and have multi-turn conversations with memory, all without leaving your terminal.
How to use
You connect Claude Code to Mintlify-powered docs by adding an MCP server entry. Once connected, you can ask questions about the documentation sites, request code examples, and receive explanations in a streamlined chat experience. Use multiple documentation sites by adding separate MCP servers for each project.
Typical usage involves starting the MCP server for a specific Mintlify project and then querying it from Claude Code. For example, you can configure a server to point to the Agno documentation and another to Resend, then switch between them as needed.
How to install
Prerequisites: you need Bun installed to run the MCP server.
Install Bun if you don’t have it yet.
Start the MCP server for a project with the following command pattern.
bunx mintlify-mcp --project agno-v2
Configuration examples
You can add the MCP server for Claude Code to your settings or use the CLI to register it. The examples below show how to start a server for the Agno project and how to configure multiple sites.
CLI example to add a single server for Agno
claude mcp add agno-assistant -- bunx mintlify-mcp --project agno-v2
CLI example to add multiple documentation sites
Add Agno and Resend sites as separate MCP servers
claude mcp add agno-assistant -- bunx mintlify-mcp -p agno-v2
claude mcp add resend-assistant -- bunx mintlify-mcp -p resend
MCP server configurations
The following configurations reflect how you can run the MCP servers locally. Each server runs the Mintlify MCP client and points to a specific Mintlify project.
Single server for Agno
{
"mcpServers": {
"agno-assistant": {
"command": "bunx",
"args": ["mintlify-mcp", "--project", "agno-v2"]
}
}
}
Multiple servers for Agno and Resend
{
"mcpServers": {
"agno-assistant": {
"command": "bunx",
"args": ["mintlify-mcp", "--project", "agno-v2"]
},
"resend-assistant": {
"command": "bunx",
"args": ["mintlify-mcp", "--project", "resend"]
}
}
}
Notes and tips
The MCP server forwards your questions to Mintlify's assistant API and returns the results to Claude Code. The flow supports multi-turn conversations, and links in responses are converted to absolute URLs for WebFetch compatibility.
If you want to explore more Mintlify projects, add additional mcpServers entries following the same structure and update any project IDs accordingly.
Security and maintenance
Keep your Bun runtime updated and monitor the MCP server health as with any local service. Do not expose the MCP server interface publicly without proper access controls.
Available tools
ask
Ask questions about the documentation and get direct answers with examples.
clear_history
Reset the current conversation history to start a fresh dialogue.