# Qurom Installation — Cline
> 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
Cline uses YAML-based MCP configuration. The config file location depends on the Cline version:
- **Cline v3+**: `~/.cline/mcp_settings.yaml`
- **VS Code Extension**: Managed through the Cline Settings → MCP Servers UI
For the YAML config, add this entry:
```yaml
name: Qurom MCP
version: 0.0.1
schema: v1
mcpServers:
- name: qurom-mcp
type: stdio
command: python
args:
- "-m"
- "qurom.server"
```
If the file already exists with other servers, add the `qurom-mcp` entry to the existing `mcpServers` list.
For the VS Code extension version: go to Cline Settings → MCP Servers → Add Server, and enter:
- Name: `qurom-mcp`
- Type: `stdio`
- Command: `python`
- Args: `-m qurom.server`
## Step 3: Restart Cline
Tell the user:
> **Qurom is installed! Please restart Cline to activate the CEO.** Close and reopen the Cline panel (or reload VS Code). 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
- Cline requires proper YAML indentation — use spaces, not tabs
- Check the Cline output panel for MCP connection errors
- Verify with: `python -m qurom.server` (should start without errors)