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:
- /llms.txt: index of every page with markdown links
- /llms-full.txt: the entire corpus in one file
- Raw markdown variants: append
.mdto any page URL - OpenAPI JSON: /openapi/coinbax-api.json and /openapi/coinbax-core.json
All four are generated from the same sources at build time, so they never disagree with the HTML pages.