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.

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"}}}'

Back to Deck home