Discovery MCP Server

The Discovery MCP server lets AI assistants explore the API specification. It provides tools to list endpoints, view parameter schemas, and understand the API — without making any actual API calls.

Server URL: https://apidoc.mcp.cakemail.com/api/mcp

Connect with Claude Code

claude mcp add apidoc-mcp \
  --transport http \
  https://apidoc.mcp.cakemail.com/api/mcp

Connect with any MCP client

{
  "mcpServers": {
    "apidoc-mcp": {
      "type": "streamable-http",
      "url": "https://apidoc.mcp.cakemail.com/api/mcp"
    }
  }
}

Authentication

No authentication required. This is a read-only spec browser.

Available Tools

list_endpoints

List available API endpoints. Filter by tag or search term.

Parameters:

  • tag (optional) — Filter by API category (e.g., Campaign, Contact, Account)
  • search (optional) — Search term to filter by path, summary, or operationId

Example usage: "List all endpoints related to campaigns"

get_endpoint

Get full details for a specific endpoint including parameters, request body schema, and response schema.

Parameters:

  • operationId (optional) — The operation ID (e.g., listCampaigns, createCampaign)
  • path (optional) — The API path (e.g., /campaigns)
  • method (optional) — The HTTP method (e.g., GET, POST)

Provide either operationId alone, or both path and method.