# Qurom Installation — Claude Desktop
> 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 Claude Desktop config file at:
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
- **Linux**: `~/.config/claude/claude_desktop_config.json`
If the file already exists, add the `"qurom-mcp"` entry to the existing `"mcpServers"` object. If it doesn't exist, create it with:
```json
{
"mcpServers": {
"qurom-mcp": {
"command": "python",
"args": ["-m", "qurom.server"],
"env": {}
}
}
}
```
**IMPORTANT**: No comments allowed in this JSON file — it will cause parse errors. No trailing commas.
## Step 3: Restart Claude Desktop
Tell the user:
> **Qurom is installed! Please restart Claude Desktop completely to activate the CEO.** Quit Claude Desktop fully (not just close the window — right-click the dock/taskbar icon and Quit), then reopen it. 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
- Must fully quit and restart Claude Desktop (not just reload)
- No comments or trailing commas in the JSON file
- Windows paths: use escaped backslashes (`\\`) or forward slashes
- Environment variables must be explicitly defined in the `"env"` object