# MCP Server

> Connect AI agents to the Coinbax docs over the Model Context Protocol to search guides, list endpoints, and fetch schemas.
> Source: https://developers.coinbax.com/docs/resources/mcp
> Last updated: 2026-07-16

This site runs a public, read-only [Model Context Protocol](https://modelcontextprotocol.io)
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**

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

**Generic client configuration**

```json
{
  "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:

- [/llms.txt](/llms.txt): index of every page with markdown links
- [/llms-full.txt](/llms-full.txt): the entire corpus in one file
- Raw markdown variants: append `.md` to any page URL
- OpenAPI JSON: [/openapi/coinbax-api.json](/openapi/coinbax-api.json) and [/openapi/coinbax-core.json](/openapi/coinbax-core.json)

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