A remote MCP (Model Context Protocol) server that gives AI coding agents live access to the MapMetrics Atlas documentation — so they can look up current API shapes instead of hallucinating them.
Endpoint (MCP Streamable HTTP): POST https://docs-mcp.mapmetrics-atlas.net/mcp
search_docs(query, limit?) — ranked search across the docsget_doc(path) — full markdown for one pagelist_docs(section?) — the docs index, optionally filteredClaude Code:
claude mcp add --transport http mapatlas-docs https://docs-mcp.mapmetrics-atlas.net/mcp
Cursor / other MCP clients — add to your MCP config:
{
"mcpServers": {
"mapatlas-docs": {
"url": "https://docs-mcp.mapmetrics-atlas.net/mcp"
}
}
}
No authentication required — this serves public documentation only.