# Qurom Installation — Zed

> 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 Zed settings file. Open it via: Zed → Settings → Open Settings (or `Cmd+,` on macOS).

The settings file is at:
- **macOS**: `~/.config/zed/settings.json`
- **Linux**: `~/.config/zed/settings.json`

Add the Qurom MCP server to the `"context_servers"` section:

```json
{
  "context_servers": {
    "qurom-mcp": {
      "command": {
        "path": "python",
        "args": ["-m", "qurom.server"],
        "env": {}
      },
      "settings": {}
    }
  }
}
```

If `"context_servers"` already exists with other entries, add `"qurom-mcp"` alongside them. Do not overwrite existing servers.

**IMPORTANT**: Zed uses `"context_servers"` (not `"mcpServers"`), and the command structure uses `"command.path"` (not `"command"` directly). This is different from other editors.

## Step 3: Restart Zed

Tell the user:

> **Qurom is installed! Please restart Zed to activate the CEO.** Close and reopen Zed. Check the Agent Panel settings for a green dot next to "qurom-mcp". When you're back, say "Hello CEO" and I'll handle the rest.

## Step 4: First Conversation (after restart)

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

- Zed only supports stdio natively — HTTP/SSE requires the `mcp-remote` bridge
- Use `"command.path"` format, not flat `"command"` string
- Check Agent Panel settings for server status (green dot = active)
- Verify with: `python -m qurom.server` (should start without errors)