Skip to main content
Jupiter supports the Model Context Protocol (MCP) through Mintlify’s native integration. This lets AI tools search and 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:
  • Search documentation: find relevant API endpoints, guides, and references
  • Read OpenAPI specs: access full request/response schemas
  • Understand API contracts: look up parameters, response fields, and error codes
This is a read-only documentation server. It helps your AI assistant understand Jupiter’s APIs, but does not execute API calls. For trading via AI tools, see Jupiter CLI.

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.

What You Get

Once connected, your AI assistant can search and read:
ResourceDescription
Documentation pagesAll guides, tutorials, and reference docs
OpenAPI specificationsComplete API schemas for Swap, Tokens, Price, and more
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.

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.