Developer
Agentmatica MCP server
Agentmatica is itself a Model Context Protocol server. Point Claude, Cursor, or your own agent at one URL to read the docs, compare plans, and inspect your agent.
Endpoint
JSON-RPC over HTTP POST — no SSE or long-lived connection needed.
POST https://agentmatica.com/api/mcpA GET on the same URL returns { "ok": true, "transport": "jsonrpc-post" } so you can health-check it. Supported methods: initialize, ping, tools/list, and tools/call.
Two scopes
- Public — no header needed. Docs search, plan comparison, and a checkout link generator.
- Bot — send
Authorization: Bearer amk_live_…with an API token. Unlocks tools that read the agent the token belongs to. Requires the API tokens feature (Growth plan and above); a valid token on a lower plan gets a403with JSON-RPC error-32003, and a bad token gets401/-32001.
Tools
list_plans— every pricing tier with limits and price.compare_plans—leftandrighttier names side by side.search_docs— full-text search across this documentation (query).get_doc_page— one docs page byslug.create_checkout_link— a checkout URL for aplan; nothing is charged until the person completes it.capture_platform_lead— leave contact details for the Agentmatica team (emailrequired).get_agent_overview(bot scope) — identifies the agent behind the token (its ID), useful for confirming which agent a token belongs to.submit_message_feedback(bot scope) — file feedback about a reply from the agent behind the token.
Connect from a client
Claude Desktop / Claude Code style config:
{
"mcpServers": {
"agentmatica": {
"url": "https://agentmatica.com/api/mcp",
"headers": { "Authorization": "Bearer amk_live_…" }
}
}
}Or call it directly:
curl https://agentmatica.com/api/mcp \
-H "Content-Type: application/json" \
-d '{ "jsonrpc": "2.0", "id": 1, "method": "tools/list" }'This is the platform server, not your agent's tools. To give your agent tools from your own systems, go the other way: connect an MCP server to the agent under Custom MCP.