MCP servers

Model Context Protocol servers for HoneyCoin docs and (soon) live API access. Read-only docs MCP is live; product MCP with route validation and payload checking is in development.

The Model Context Protocol (MCP) lets AI agents call tools directly instead of parsing prose. HoneyCoin's docs are reachable through three MCPs — two are live today, one is in development.

At a glance

MCPStatusWhen to use
ReadMe docs MCPLiveRead or search HoneyCoin docs from inside an agent.
ReadMe authoring MCPInternalHoneyCoin team — edits to the docs themselves.
HoneyCoin product MCPIn developmentLive route validation, coverage lookup, payload checks.

1. ReadMe documentation MCP

The hosted docs MCP exposes search and fetch over every public docs page. Use it when an agent needs to ground its output in the latest HoneyCoin guidance.

ToolWhat it does
search_docsFull-text search of HoneyCoin docs. Returns page slugs + snippets.
fetch_pageRetrieve the full Markdown of a page by slug.
list_pagesSitemap — equivalent to /llms.txt.

When to use. Embed in Cursor, Claude Desktop, or any MCP-capable client. Configure it once and the agent can answer "how do I collect KES?" by pulling the reference page directly.

Configuration (Claude Desktop example):

{
  "mcpServers": {
    "honeycoin-docs": {
      "url": "https://docs.honeycoin.app/mcp"
    }
  }
}

2. ReadMe authoring MCP

Internal tool used by the HoneyCoin docs team. Exposes write operations on the docs themselves — creating pages, editing frontmatter, linting. Not intended for external integration builders.

ToolWhat it does
create_pageAdd a new page.
update_pageEdit existing page content.
validate_linksAudit cross-links and broken anchors.

This MCP is gated to the HoneyCoin engineering account and is documented here only to clarify what it is not for.

3. HoneyCoin product MCP (in development)

The product MCP will expose live HoneyCoin operations as tools, so agents can validate routes and payloads against the real platform — not just the static manifests.

Planned tool surface

ToolWhat it does
get_supported_routesList supported (country, currency, method, destination) combinations. Live equivalent of coverage.json.
build_integration_planGiven a high-level goal ("collect KES, settle USDC on Base"), returns the step-by-step API calls + webhooks to subscribe to.
get_endpointFetch the OpenAPI spec for a named operation by operationId.
validate_payloadSubmit a request body for a named operation; returns whether it would be accepted, with field-level errors. Does not execute the call.
get_webhook_schemaReturn the envelope and data shape for a named webhook event.
get_test_dataSandbox fixtures (success, failure, OTP, redirect) for a given recipe.
lookup_errorMap an errorCode to its developer action, retry flag, and remediation.
get_wallet_chain_supportWallet-specific coverage: chain → token → onramp/offramp/transfer support.
build_wallet_integration_planStep-by-step plan for wallet provisioning + webhook + reconciliation.
validate_wallet_payloadLike validate_payload, but for wallet endpoints. Catches invalid addresses, unsupported chain+token pairs, missing fields.

When to use the product MCP

  • You are an AI coding assistant building a HoneyCoin integration interactively. Use build_integration_plan to scaffold, then validate_payload before making real calls.
  • You are a developer using an agent to ask "is corridor X supported?" Use get_supported_routes.
  • You hit an error and want the agent to remediate. Use lookup_error.

Difference from manifests

ManifestsProduct MCP
FreshnessSnapshot at docs build timeReal-time
AccessStatic JSON over HTTPSTool calls over MCP
CapabilityRead onlyRead + validate (no side effects in production)
AuthNoneOptional API key for account-specific support

When the product MCP ships, the manifests will remain the deterministic source of truth — the MCP will be a convenience layer on top.

Tool naming convention

All HoneyCoin MCP tools follow verbNoun naming to match the rest of the API (get_supported_routes, lookup_error, validate_payload). This mirrors the OpenAPI operationId convention.

Status and release

MilestoneTarget
Spec finalizedQ2 2026
Public betaQ3 2026
GAQ4 2026

Related