Skip to content
MCP

The ADITUS documentation, inside your coding assistant.

A public, read-only MCP server over the API reference and the Shop Micro Frontend guide. No account, no key: add one URL and Claude, Cursor, Copilot or ChatGPT look up the real contract instead of guessing.

https://developers.aditus.com/api/mcp

Setup

Streamable HTTP, no authentication, no session state. Pick your client:

Claude Code
claude mcp add --transport http aditus-docs https://developers.aditus.com/api/mcp
Cursor · .cursor/mcp.json
{
  "mcpServers": {
    "aditus-docs": {
      "url": "https://developers.aditus.com/api/mcp"
    }
  }
}
VS Code / Copilot · .vscode/mcp.json
{
  "servers": {
    "aditus-docs": {
      "type": "http",
      "url": "https://developers.aditus.com/api/mcp"
    }
  }
}
Claude Desktop · claude_desktop_config.json
{
  "mcpServers": {
    "aditus-docs": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://developers.aditus.com/api/mcp"]
    }
  }
}
curl
curl -s https://developers.aditus.com/api/mcp \
  -H 'Accept: application/json, text/event-stream' \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"search_docs","arguments":{"query":"create cart"}}}'

Clients that read server cards discover the same server at /.well-known/mcp/server-card.json.

Tools

Six read-only tools. Content comes from the same redacted collection snapshot as the API reference and the Markdown mirrors under /ai, so all three always agree.

ToolArgumentsReturns
search_docsquery, limit?Ranked full-text search across modules, endpoints and guides.
list_modulesAll API modules with direction, endpoint counts and links, plus the guides.
list_endpointsmoduleEvery endpoint of one module with method, path and a one-line summary.
get_endpointendpointFull contract: parameters, headers, request body and example responses.
get_guideguide, section?Markdown of the Shop Micro Frontend guide, Guidelines or Webhooks, whole or one section.
about_bi_assistant_mcpExplains the separate, credentialed Business Intelligence assistant MCP.

Two MCP servers, two purposes

This server answers questions about the documentation and never touches customer data. The Business Intelligence module offers a second, credentialed MCP that answers questions over your own event data with the same data scoping as the BI API. It is provisioned per customer system: Business Intelligence → MCP.