---
title: Kilo Code
description: Install Docfork MCP in Kilo Code
---
You can configure the Docfork MCP server in **Kilo Code** using either the UI or by editing your project's MCP configuration file.
Kilo Code supports two configuration levels:
- **Global MCP Configuration** — stored in `mcp_settings.json`
- **Project-level MCP Configuration** — stored in `.kilocode/mcp.json` (recommended)
### Configure via Kilo Code UI
1. Open **Kilo Code**.
2. Click the **Settings** icon in the top-right corner.
3. Navigate to **Settings → MCP Servers**.
4. Click **Add Server**.
5. Choose **HTTP Server** (Streamable HTTP Transport).
6. Enter the details:
- **URL**: `https://mcp.docfork.com/mcp`
- **Headers → Add Header**
- **Key:** `Authorization`
- **Value:** `Bearer YOUR_API_KEY`
7. Click **Save**.
### Manual Configuration
Create `.kilocode/mcp.json`:
```json theme={null}
{
"mcpServers": {
"docfork": {
"type": "streamable-http",
"url": "https://mcp.docfork.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
},
"alwaysAllow": [],
"disabled": false
}
}
}
```