Allows querying of any Mintlify-powered documentation site to ask technical questions, retrieve code examples, and get explanations through an AI-powered assistant.
Enables querying of Resend's documentation to answer technical questions and retrieve code snippets directly through the Mintlify assistant interface.
Enables querying of Upstash's documentation to answer technical questions and retrieve code snippets directly through the Mintlify assistant interface.
Enables querying of Vercel's documentation to answer technical questions and retrieve code snippets directly through the Mintlify assistant interface.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mintlify-mcpHow do I send an email with an attachment using Resend?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mintlify-mcp
MCP server to query any Mintlify-powered documentation from Claude Code
What is this?
An MCP server that lets you query any documentation site powered by Mintlify directly from Claude Code.
Features:
π Ask questions about Agno, Resend, or any Mintlify docs
π» Get code examples and explanations without leaving your terminal
π§ Multi-turn conversations with memory
π Links converted to absolute URLs (WebFetch compatible)
Quick Start
Or add to your settings manually:
Tools available:
ask- Ask any question about the docsclear_history- Reset conversation
Multiple Documentation Sites
Or in settings:
Known Project IDs
Documentation | Project ID | Status |
| Tested | |
| Tested | |
| Tested | |
| Tested | |
| Tested | |
| Tested |
Want to add more? The project ID is usually the subdomain or company name. Open a PR or issue!
Finding New Project IDs
Open the documentation site (e.g.,
docs.agno.com)Open browser DevTools β Network tab
Use the search or AI assistant feature
Look for requests to
leaves.mintlify.com/api/assistant/{project-id}/message
CLI Options
Requirements
Bun runtime:
curl -fsSL https://bun.sh/install | bash
How It Works
You ask a question in Claude Code
MCP server forwards to Mintlify's AI Assistant API
Mintlify searches documentation using RAG
Response streams back to Claude Code
Context Optimization: The server extracts only the assistant's text from SSE responses, reducing ~50-100KB raw responses to ~1KB (99% reduction!).
API Documentation
See AGENT.md for complete reverse-engineered API documentation including:
Endpoint details and schemas
Request/response formats
cURL examples
Multi-turn conversation support
License
MIT - See LICENSE
Contributing
PRs welcome! To add a new documentation site:
Add the project ID to
KNOWN_DOCSinsrc/index.tsUpdate the table above
Submit a PR