Guides

MCP Server

Connect AI agents to the Coinbax docs over the Model Context Protocol to search guides, list endpoints, and fetch schemas.

Last updated 2026-07-16View as Markdown

This site runs a public, read-only Model Context Protocol server at https://developers.coinbax.com/mcp. Agents connected to it can onboard to the Coinbax Platform, browse both API collections, and pull endpoint schemas with runnable staging samples, all without scraping HTML.

Connect

The server speaks stateless Streamable HTTP. No authentication is required.

Claude Code

claude mcp add --transport http coinbax-docs https://developers.coinbax.com/mcp

Generic client configuration

{
  "mcpServers": {
    "coinbax-docs": {
      "url": "https://developers.coinbax.com/mcp"
    }
  }
}

Tools

Tool Purpose
getting_started Onboarding instructions: staging credentials, base URLs, testnet constants, first transaction. Call this first.
list_collections The documented API collections with base URLs and OpenAPI download links.
list_endpoints Endpoints of a collection (operationId, method, path, summary), optionally filtered by tag.
get_endpoint Full markdown documentation for one endpoint: parameters, schemas, examples, curl against staging.
get_guide Any guide on this site as raw markdown, by slug.
search_docs Ranked full-text search across all guides and endpoints.

Other machine-readable surfaces

The MCP server is one of four equivalent surfaces. The same content is available without MCP:

All four are generated from the same sources at build time, so they never disagree with the HTML pages.