Using these docs with any MCP client
grandocs runs a stateless Model Context Protocol server so any MCP-capable client can search the docs live. One endpoint, no account, no key.
https://grandocs-mcp.samcarlton.workers.dev/mcpTransport is Streamable HTTP (POST /mcp).
| Tool | What it does |
|---|---|
search_docs | Full-text search across all products; returns ranked pages with the page URL and the raw-markdown .md URL. |
get_page | Returns the raw markdown of one page by its path (e.g. grandma3/2-4/cue_store). |
command_lookup | Resolves a grandMA keyword (Store, Assign, At, MAtricks…) to its reference page and returns the syntax. |
list_products_versions | The full product / version / language coverage matrix. |
Every result ends with a source link and an “unofficial mirror” note so the model cites correctly.
Add it to your client
Section titled “Add it to your client”claude mcp add --transport http grandocs https://grandocs-mcp.samcarlton.workers.dev/mcp~/.cursor/mcp.json (or Settings → MCP → Add server):
{ "mcpServers": { "grandocs": { "url": "https://grandocs-mcp.samcarlton.workers.dev/mcp" } }}.vscode/mcp.json in your workspace (then use Copilot agent mode):
{ "servers": { "grandocs": { "type": "http", "url": "https://grandocs-mcp.samcarlton.workers.dev/mcp" } }}{ "mcpServers": { "grandocs": { "command": "npx", "args": ["-y", "mcp-remote", "https://grandocs-mcp.samcarlton.workers.dev/mcp"] } }}On Pro / Business / Enterprise: Settings → Connectors (Developer mode for
custom servers) → add the MCP server URL
https://grandocs-mcp.samcarlton.workers.dev/mcp.
Quick test
Section titled “Quick test”Any MCP inspector or client can verify it:
npx @modelcontextprotocol/inspector# point it at https://grandocs-mcp.samcarlton.workers.dev/mcp, then run tools/listA GET of the root returns a small JSON health document listing the tools.