Skip to main content
Your Magic Meal Kits deployment exposes an MCP (Model Context Protocol) server, so an LLM client can call MMK tools directly — PDF and YouTube extraction, JavaScript execution, Markdown → Slack conversion, date parsing, and (by tier) Threads, Plaud, Tiro, Paymint, and Notion tools.
Two different MCP servers are in play, don’t confuse them:
  • This page — your server’s MCP at https://<your-deployment>/mcp, which runs actions against your MMK deployment.
  • Docs as MCP — the documentation MCP at https://docs.magicmealkits.com/mcp, which lets an LLM read this reference.

Connecting

ClientHow
Claude.aiSettings → Connectors → Add custom connector → https://<your-deployment>/mcp, auth Authorization: Bearer YOUR_API_KEY
Claude Codeclaude mcp add or .mcp.json, header X-API-KEY: YOUR_API_KEY
Cursor / otherAdd the same /mcp URL with an API-key header

Endpoints

EndpointAuthDescription
POST /mcpRequiredMain JSON-RPC endpoint
GET /mcpRequiredServer info / SSE streaming
GET /mcp/healthNoneHealth check
GET /mcp/categoriesNoneList tool categories

Tool filtering

Limit exposed tools with the tools query parameter:
/mcp?tools=pdf,youtube        # by category
/mcp?tools=pdf_info,youtube_transcript   # by specific tool
/mcp                          # all tools (default)
Looking for ready-made automations? The MMK Skills give your agent slash commands (/mmk-notion, /mmk-paymint-send, …) for the most common operations — install them once and skip writing glue code.