# Qurom Installation — Kimi
> 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
Kimi uses the standard MCP config format. The config file location is:
- **Linux/macOS**: `~/.kimi/mcp.json`
- **Windows**: `%APPDATA%\kimi\mcp.json`
If the file doesn't exist, create it. If it exists, add the `"qurom-mcp"` entry to the existing `"mcpServers"` object:
```json
{
"mcpServers": {
"qurom-mcp": {
"command": "python",
"args": ["-m", "qurom.server"]
}
}
}
```
## Step 3: Restart Kimi
Tell the user:
> **Qurom is installed! Please restart Kimi to activate the CEO.** Close your current Kimi session and start a new one. 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
- Check that `python -m qurom.server` works when run manually
- Verify the JSON file is valid: `python -m json.tool ~/.kimi/mcp.json`
- Make sure Kimi is running with MCP support enabled (`--approve-mcps` flag)