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

# theo mcp install

> Configure MCP for specific IDEs.

<Note>
  For the full setup walkthrough — including hand-written config, per-IDE paths, and verification — see [MCP / Install](/mcp/install). This page is the CLI flag reference only.
</Note>

```bash theme={null}
theo mcp install [--ide <name>]
```

Writes the MCP server configuration for detected or specified IDEs.

## IDE Options

| IDE         | Flag                | Config Path                           |
| ----------- | ------------------- | ------------------------------------- |
| Cursor      | `--ide cursor`      | `.cursor/mcp.json`                    |
| Claude Code | `--ide claude-code` | `.mcp.json` or `claude mcp add`       |
| Warp        | `--ide warp`        | `.warp/mcp.json`                      |
| Windsurf    | `--ide windsurf`    | `~/.codeium/windsurf/mcp_config.json` |
| VS Code     | `--ide vscode`      | `.vscode/mcp.json`                    |
| All         | `--ide all`         | All of the above                      |

## Examples

```bash theme={null}
# Auto-detect and configure
theo mcp install

# Configure for a specific IDE
theo mcp install --ide cursor

# Configure all IDEs
theo mcp install --ide all
```
