# Qurom Installation — Windsurf

> You are an AI agent helping a user install Qurom. Follow these steps exactly. Do not skip steps. After each step, confirm success before proceeding.

## Step 1: Install Qurom

Run this command:

```bash
pip install qurom
```

Confirm the install succeeded:

```bash
python -c "import qurom; print(f'Qurom {qurom.__version__} installed successfully')"
```

## Step 2: Add the Qurom MCP Server

Edit the Windsurf MCP config file at `~/.codeium/windsurf/mcp_config.json`.

If the file already exists and has an `"mcpServers"` object, add the `"qurom-mcp"` entry inside it. If it doesn't exist, create it:

```json
{
  "mcpServers": {
    "qurom-mcp": {
      "command": "python",
      "args": ["-m", "qurom.server"]
    }
  }
}
```

Do not overwrite existing MCP server entries.

## Step 3: Restart Windsurf

Tell the user:

> **Qurom is installed! Please restart Windsurf to activate the CEO.** Press `Cmd+Shift+P` (macOS) or `Ctrl+Shift+P` (Linux/Windows), type "Reload Window", and press Enter. You can verify the MCP server is active in Settings → Cascade → MCP Servers. When you're back, say "Hello CEO" and I'll handle the rest.

## Step 4: First Conversation (after restart)

When the user returns, the Qurom MCP tools will be available. Welcome the user with:

> Welcome to Qurom. I'm your CEO — I coordinate AI agents to get work done for you. Let me scan your system to see what AI tools you have installed...

---

## Troubleshooting

- Verify the config path: `~/.codeium/windsurf/mcp_config.json`
- Check MCP server status in Settings → Cascade section
- CRITICAL: Some Windsurf versions use `serverUrl` instead of `url` for HTTP transport
- Make sure `python -m qurom.server` works when run manually