Docs MCP server
Add The Quantum Club documentation to any AI agent — Claude, Cursor, ChatGPT, or your own — as live, queryable tools.
The Quantum Club runs a public Model Context Protocol server. Add it to any MCP client and your AI agent can search the documentation, read full pages, and ask grounded questions — without leaving the chat.
Endpoint
https://tqc-docs-mcp.darryl-2c6.workers.dev/mcpTransport is Streamable HTTP. The server is read-only, needs no API key, and exposes only documentation — no product data.
Tools
| Tool | What it does |
|---|---|
search_docs | Find the most relevant documentation sections for a query, with their page paths. |
get_page | Fetch a full documentation page as markdown by path, for example /api/scim. |
ask_docs | Ask a natural-language question and get a concise answer grounded only in the docs, with sources. |
Add it to your agent
claude mcp add --transport http tqc-docs https://tqc-docs-mcp.darryl-2c6.workers.dev/mcpSettings → MCP → Add new server, then paste:
{
"tqc-docs": {
"url": "https://tqc-docs-mcp.darryl-2c6.workers.dev/mcp"
}
}Add to your claude_desktop_config.json:
{
"mcpServers": {
"tqc-docs": {
"url": "https://tqc-docs-mcp.darryl-2c6.workers.dev/mcp"
}
}
}Any MCP client that supports Streamable HTTP:
{
"mcpServers": {
"tqc-docs": {
"url": "https://tqc-docs-mcp.darryl-2c6.workers.dev/mcp"
}
}
}Your agent now lists search_docs, get_page, and ask_docs among its
tools. Ask it something like "Using the tqc-docs tools, how do I set up SCIM?"
and it will answer from this documentation, with sources.
Why this exists
Most documentation can only be read by a person in a browser. Increasingly, the reader is an AI agent — writing an integration, answering a teammate, or building against The Quantum Club. The MCP server makes the documentation a first-class tool for those agents, so they answer from current, accurate source instead of guessing.

