npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mintlify-mcp

v0.2.0

Published

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

Readme

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

| Documentation | Project ID | Status | |--------------|------------|--------| | Agno | agno-v2 | Tested | | Resend | resend | Tested | | Upstash | upstash | Tested | | Mintlify | mintlify | Tested | | Vercel | vercel | Tested | | Plain | plain | Tested |

Want to add more? The project ID is usually the subdomain or company name. Open a PR or issue!

Finding New Project IDs

  1. Open the documentation site (e.g., docs.agno.com)
  2. Open browser DevTools → Network tab
  3. Use the search or AI assistant feature
  4. 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)  │
└─────────────┘     └─────────────┘     └─────────────────────┘
  1. You ask a question in Claude Code
  2. MCP server forwards to Mintlify's AI Assistant API
  3. Mintlify searches documentation using RAG
  4. 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:

  1. Add the project ID to KNOWN_DOCS in src/index.ts
  2. Update the table above
  3. Submit a PR

Acknowledgments

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