> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domesystems.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# dome mcp

> MCP server for AI agents

## Serve

`dome mcp serve`

Start an MCP server on stdio. Exposes Dome Platform operations as tools for MCP clients like Claude.

Authentication is read from the active CLI context.

### Setup

```bash theme={"system"}
dome auth login
dome mcp serve
```

### Claude Integration

```bash theme={"system"}
claude mcp add dome -- dome mcp serve
```

Or add manually to your MCP config:

```json theme={"system"}
{
  "mcpServers": {
    "dome": {
      "command": "dome",
      "args": ["mcp", "serve"]
    }
  }
}
```

See the [MCP Server Reference](/reference/mcp) for the complete tool list organized by group.
