Cortex Docs

Model Context Protocol (MCP)

Connect AI coding agents and LLMs to Cortex documentation and ASO tools via our official Model Context Protocol server.

Model Context Protocol (MCP) Server

Cortex implements the open Model Context Protocol (MCP) specification. This allows AI developer agents (such as Claude Desktop, Cursor, Antigravity, and custom LLM workflows) to search our documentation, inspect API schemas, and query ASO metrics directly.

Endpoint & Transport

The Cortex MCP server is hosted as a standard HTTP Streamable endpoint:

https://cortexaso.com/api/mcp

Connecting Your AI Agent

Add Cortex to your agent's MCP configuration file (e.g. claude_desktop_config.json or .mcp.json):

{
  "mcpServers": {
    "cortex-docs": {
      "url": "https://cortexaso.com/api/mcp"
    }
  }
}

Available MCP Tools

Our server exposes three core documentation and tool capabilities:

  1. list_pages: Enumerates all published documentation topics, guides, and OpenAPI routes with URL slugs and titles.
  2. get_page: Fetches clean, Markdown-formatted content for any page path (e.g. /docs/authentication, /docs/api/user/auth/userAuth_login).
  3. search: Performs semantic full-text search across documentation guides and API endpoint contracts with natural language queries.

LLM-Ready Endpoints: If you are training or feeding documentation context into an LLM context window without MCP, you can also fetch our raw text feeds directly at /llms.txt and /llms-full.txt.

On this page