Developer resource
Deck MCP server
The official first-party Model Context Protocol server for Deck. Agents can search Deck docs, read API reference, and retrieve product context over Streamable HTTP. No authentication is required for the public docs server.
- Live endpoint: https://docs.deck.co/mcp
- Discovery manifest: /.well-known/mcp
- Server card: /.well-known/mcp/server-card.json
- OpenAPI spec: /openapi.json
- Auth docs: Deck API authentication
- Webhooks: Deck webhooks / events
Handshake (JSON-RPC initialize over Streamable HTTP):
curl -s -X POST https://docs.deck.co/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"example","version":"1.0.0"}}}'