Skip to main content
  1. Sign up — Create an account at platform.respan.ai
  2. Create an API key — Generate one on the API keys page
  3. Add credits or a provider key — Add credits on the Credits page or connect your own provider key on the Integrations page
The Docs MCP server gives your AI tools direct access to the Respan documentation. This allows AI assistants like Cursor and Claude to search and reference Respan docs when helping you build integrations.

Getting started

1

Configure your AI tool

Add the Respan Docs MCP server to your MCP configuration:
{
  "mcpServers": {
    "respan-docs": {
      "url": "https://docs.respan.ai/mcp"
    }
  }
}
2

Restart your AI tool

Restart Cursor or Claude Desktop to load the MCP server.
No API key is required — the Docs MCP server provides read-only access to public documentation.

Available tools

Once connected, your AI tools can:
ToolDescription
search_docsSearch across all Respan documentation
get_pageRetrieve the full content of a specific documentation page

Use cases

  • Integration setup — Ask your AI assistant “How do I set up Respan tracing with LangGraph?” and it will pull the relevant docs directly
  • API reference lookup — Query specific API endpoints and parameters without leaving your editor
  • SDK usage — Get code examples and SDK method signatures in context while coding

Combining with Platform MCP

For the best experience, use both MCP servers together:
  • Docs MCP — documentation, guides, and API reference
  • Platform MCP — live data (logs, traces, prompts, customers)
{
  "mcpServers": {
    "respan-docs": {
      "url": "https://docs.respan.ai/mcp"
    },
    "respan": {
      "url": "https://mcp.respan.ai/mcp"
    }
  }
}
The Platform MCP server supports OAuth — your tool will prompt you to sign in automatically. See Platform MCP for all authentication options.