Socket
Book a DemoInstallSign in
Socket

mintlify-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mintlify-mcp

MCP server to chat with any Mintlify-powered documentation via Claude Code

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

mintlify-mcp

MCP server to query any Mintlify-powered documentation from Claude Code

License: MIT

What is this?

An MCP server that lets you query any documentation site powered by Mintlify directly from Claude Code.

Example use cases:

  • Ask questions about Agno, Resend, or any Mintlify docs
  • Get code examples and explanations without leaving your terminal
  • Multi-turn conversations with documentation context

Quick Start

claude mcp add agno-assistant -- bunx mintlify-mcp --project agno-v2

Or add to your settings manually:

{
  "mcpServers": {
    "agno-assistant": {
      "command": "bunx",
      "args": ["mintlify-mcp", "-p", "agno-v2"]
    }
  }
}

Tools available:

  • ask - Ask any question about the docs
  • clear_history - Reset conversation

Multiple Documentation Sites

claude mcp add agno-assistant -- bunx mintlify-mcp -p agno-v2
claude mcp add resend-assistant -- bunx mintlify-mcp -p resend

Or in settings:

{
  "mcpServers": {
    "agno-assistant": {
      "command": "bunx",
      "args": ["mintlify-mcp", "-p", "agno-v2"]
    },
    "resend-assistant": {
      "command": "bunx",
      "args": ["mintlify-mcp", "-p", "resend"]
    }
  }
}

Known Project IDs

DocumentationProject IDStatus
Agnoagno-v2Tested
ResendresendTested
UpstashupstashTested
MintlifymintlifyTested
VercelvercelTested
PlainplainTested

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

bunx mintlify-mcp --help

OPTIONS:
  -p, --project <id>    Mintlify project ID (required)
  -n, --name <name>     Custom display name
  -h, --help            Show help

Requirements

  • Bun runtime: curl -fsSL https://bun.sh/install | bash

How It Works

┌─────────────┐     ┌─────────────┐     ┌─────────────────────┐
│ Claude Code │────▶│ MCP Server  │────▶│ Mintlify Assistant  │
│             │◀────│ (this repo) │◀────│ API (RAG Pipeline)  │
└─────────────┘     └─────────────┘     └─────────────────────┘
  • 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 CLAUDE.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_DOCS in src/index.ts
  • Update the table above
  • Submit a PR

Acknowledgments

  • Mintlify for building amazing documentation tooling
  • Anthropic for Claude and the MCP protocol

Keywords

mcp

FAQs

Package last updated on 12 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts