> ## Documentation Index
> Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Phoenix Docs MCP

> Let AI assistants search and retrieve the Phoenix documentation in real time over MCP.

The Phoenix Docs MCP server lets AI assistants search and retrieve Phoenix documentation in real time. It's complementary to the [Remote MCP Server](/docs/phoenix/integrations/remote-mcp) — run it alongside a data server so your assistant can answer questions from the docs as well as your Phoenix instance.

**Server URL:**

```
https://arizeai-433a7140.mintlify.app/mcp
```

Point your client at the server URL above. No authentication is required.

<AccordionGroup>
  <Accordion title="Claude Code">
    <Steps>
      <Step title="Add the Phoenix Docs MCP server">
        ```bash theme={null}
        claude mcp add --transport http phoenix-docs https://arizeai-433a7140.mintlify.app/mcp
        ```

        Add `--scope user` to make it available in all projects instead of the current directory only.
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="Claude Desktop">
    <Steps>
      <Step title="Add a custom connector">
        Go to **Settings → Connectors → Add custom connector** and enter:

        * **Name**: `Phoenix Docs`
        * **URL**: `https://arizeai-433a7140.mintlify.app/mcp`
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="Cursor">
    <Steps>
      <Step title="Add the Phoenix Docs MCP server">
        Add to `~/.cursor/mcp.json` (or project `.cursor/mcp.json`):

        ```json theme={null}
        {
          "mcpServers": {
            "phoenix-docs": {
              "url": "https://arizeai-433a7140.mintlify.app/mcp"
            }
          }
        }
        ```
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="VS Code">
    <Steps>
      <Step title="Add the Phoenix Docs MCP server">
        Run `MCP: Add Server` from the Command Palette, or add to `.vscode/mcp.json`:

        ```json theme={null}
        {
          "servers": {
            "phoenix-docs": {
              "type": "http",
              "url": "https://arizeai-433a7140.mintlify.app/mcp"
            }
          }
        }
        ```
      </Step>
    </Steps>
  </Accordion>

  <Accordion title="Other clients">
    Any client that supports streamable HTTP works. Configure the URL as `https://arizeai-433a7140.mintlify.app/mcp` — no authentication is required.
  </Accordion>
</AccordionGroup>

## Related

<CardGroup cols={2}>
  <Card title="Remote MCP Server" icon="database" href="/docs/phoenix/integrations/remote-mcp">
    Connect assistants to your Phoenix data — traces, datasets, experiments, and prompts.
  </Card>

  <Card title="MCP Overview" icon="plug" href="/docs/phoenix/integrations/mcp">
    Compare the Phoenix MCP servers and pick the right one.
  </Card>
</CardGroup>
