Aller au contenu
CoinsSendDéveloppeurs
Documentation Payments

Documentation MCP Server

Voir le MarkdownConfigurer un agent

Ce contenu n’est pas encore disponible dans votre langue.

CoinsSend exposes a read-only Model Context Protocol (MCP) server for AI coding agents and developer tools. It serves the same reviewed public documentation and OpenAPI contract as this site. It cannot create invoices, wallets, withdrawals, or call any other business endpoint.

Use this Streamable HTTP endpoint in an MCP client that supports protocol revision 2025-11-25 or an older revision negotiated by the server:

https://api.coinssend.com/v1/docs/mcp

No API key is required because the server exposes public documentation only. Requests are rate-limited. A client that requires only the newer stateless 2026-07-28 protocol revision will need a future server upgrade.

For Codex, register the remote server with:

Terminal window
codex mcp add coinssend-docs --url https://api.coinssend.com/v1/docs/mcp

MCP client configuration formats differ. In clients that accept a URL-based server entry, the equivalent shape is:

{
"mcpServers": {
"coinssend-docs": {
"url": "https://api.coinssend.com/v1/docs/mcp"
}
}
}
URIMedia typeContents
docs://manifestapplication/jsonOrdered allowlist of public pages and machine-readable resources
docs://openapiapplication/vnd.oai.openapi+json;version=3.1Canonical public OpenAPI 3.1 contract
docs://signature-test-vectorsapplication/jsonExecutable fixtures for PHP-compatible request canonicalization and signatures

The manifest contains only the public pages and resources available through the documentation server.

ToolPurpose
search_docsDeterministic lexical search with at most eight bounded results
get_docs_pageRead one exact public Markdown path returned by the manifest or search
get_openapi_operationRetrieve an operation by its stable operationId
get_openapi_schemaRetrieve a named schema from components.schemas

All tools are annotated read-only, idempotent, and closed-world. They serve only the public documentation corpus and do not call the CoinsSend business API.

  • Use OpenAPI operations and schemas for request and response structure; use prose pages for workflow and operational guidance.
  • Treat MCP output as documentation, not as approval to move funds or perform a production action.
  • Do not infer idempotency. In particular, invoice creation, static-wallet creation, and withdrawal creation do not accept an Idempotency-Key contract.
  • Validate the current live coin and network catalog before constructing a transaction; supported assets and fees can change.
  • Keep merchant API keys outside prompts, logs, source control, and MCP arguments.

For clients without MCP support, use the generated llms.txt index or the canonical openapi.json directly.