Skip to main content
Jupiter supports the Model Context Protocol (MCP) through Mintlify’s native integration. This lets AI tools query Jupiter’s documentation and API specifications directly from your editor.

What is MCP?

MCP is an open protocol that connects AI assistants to external data sources and tools. With Jupiter’s MCP server, your AI editor can:
  • Query documentation — look up any API endpoint, guide, or reference
  • Read OpenAPI specs — access full request/response schemas
  • Scaffold API calls — generate code from real specifications
  • Debug errors — check your code against the actual API contract

Mintlify Native MCP

Every Mintlify documentation site includes a built-in MCP server. Jupiter’s is available at:
https://dev.jup.ag/mcp
This server exposes all Jupiter documentation and OpenAPI specifications through the MCP protocol, with no additional setup required.

Setup

How to enable Jupiter MCP in Claude Code:
  1. Open your terminal.
  2. Add Jupiter’s MCP server by running:
claude mcp add --scope user --transport http jupiter https://dev.jup.ag/mcp
  1. Launch Claude Code and start chatting with Jupiter.
Or add to your project’s .mcp.json:
{
  "mcpServers": {
    "jupiter": {
      "url": "https://dev.jup.ag/mcp"
    }
  }
}
Verify with:
claude mcp list

Other MCP-Compatible Tools

Any tool that supports the MCP protocol can connect to https://dev.jup.ag/mcp using HTTP transport.

What You Get

Once connected, your AI assistant has full access to:
ResourceDescription
Documentation pagesAll guides, tutorials, and reference docs
OpenAPI specificationsComplete API schemas for Ultra Swap, Tokens, Price, and more
Code examplesSample implementations from the docs
Error referencesCommon error codes and troubleshooting guides
Combine MCP with llms.txt for the best results — use MCP for in-editor queries and llms.txt for batch processing or RAG pipelines.