Skip to content

Commit 24c592f

Browse files
authored
docs: add Kilo Code, Google Antigravity, and Emdash installation guides (#1146)
1 parent 11a733d commit 24c592f

File tree

1 file changed

+87
-1
lines changed

1 file changed

+87
-1
lines changed

docs/installation.mdx

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,71 @@ Get your Smithery key from your account at [smithery.ai](https://smithery.ai/ser
287287

288288
</Accordion>
289289

290+
<Accordion title="Kilo Code" icon="code">
291+
You can configure the Context7 MCP server in **Kilo Code** using either the UI or by editing your project's MCP configuration file.
292+
293+
Kilo Code supports two configuration levels:
294+
- **Global MCP Configuration** — stored in `mcp_settings.json`
295+
- **Project-level MCP Configuration** — stored in `.kilocode/mcp.json` (recommended)
296+
297+
**Via Kilo Code UI:**
298+
1. Open **Kilo Code**
299+
2. Click the **Settings** icon in the top-right corner
300+
3. Navigate to **Settings → MCP Servers**
301+
4. Click **Add Server**
302+
5. Choose **HTTP Server** (Streamable HTTP Transport)
303+
6. Enter URL: `https://mcp.context7.com/mcp`
304+
7. Add Header - Key: `Authorization`, Value: `Bearer YOUR_API_KEY`
305+
8. Click **Save**
306+
307+
**Manual Configuration** (`.kilocode/mcp.json`):
308+
```json
309+
{
310+
"mcpServers": {
311+
"context7": {
312+
"type": "streamable-http",
313+
"url": "https://mcp.context7.com/mcp",
314+
"headers": {
315+
"Authorization": "Bearer YOUR_API_KEY"
316+
},
317+
"alwaysAllow": [],
318+
"disabled": false
319+
}
320+
}
321+
}
322+
```
323+
324+
</Accordion>
325+
326+
<Accordion title="Google Antigravity" icon="google">
327+
**Remote Server**:
328+
```json
329+
{
330+
"mcpServers": {
331+
"context7": {
332+
"serverUrl": "https://mcp.context7.com/mcp",
333+
"headers": {
334+
"CONTEXT7_API_KEY": "YOUR_API_KEY"
335+
}
336+
}
337+
}
338+
}
339+
```
340+
341+
**Local Server**:
342+
```json
343+
{
344+
"mcpServers": {
345+
"context7": {
346+
"command": "npx",
347+
"args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
348+
}
349+
}
350+
}
351+
```
352+
353+
</Accordion>
354+
290355
<Accordion title="Gemini CLI" icon="google">
291356
Open `~/.gemini/settings.json` and add:
292357

@@ -370,8 +435,14 @@ Get your Smithery key from your account at [smithery.ai](https://smithery.ai/ser
370435
</Accordion>
371436

372437
<Accordion title="OpenAI Codex" icon="openai">
373-
Add to your MCP server settings:
438+
**Remote Server**:
439+
```toml
440+
[mcp_servers.context7]
441+
url = "https://mcp.context7.com/mcp"
442+
http_headers = { "CONTEXT7_API_KEY" = "YOUR_API_KEY" }
443+
```
374444

445+
**Local Server**:
375446
```toml
376447
[mcp_servers.context7]
377448
args = ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
@@ -849,6 +920,21 @@ Get your Smithery key from your account at [smithery.ai](https://smithery.ai/ser
849920
Once configured, Context7 tools will be available in your droid sessions. Type `/mcp` within droid to manage servers, authenticate, and view available tools.
850921

851922
</Accordion>
923+
924+
<Accordion title="Emdash" icon="layer-group">
925+
[Emdash](https://github.com/generalaction/emdash) is an orchestration layer for running multiple coding agents in parallel. Provider-agnostic, worktree-isolated, and local-first.
926+
927+
**What Emdash provides:**
928+
- Global toggle: Settings → MCP → "Enable Context7 MCP"
929+
- Per-workspace enable: The Context7 button in the ProviderBar (off by default). First click enables it for that workspace. Clicking again disables it.
930+
- ProviderBar: The Context7 button shows status, a short explanation, and a link to docs
931+
932+
**What you still need to do:**
933+
Configure your coding agent (Codex, Claude Code, Cursor, etc.) to connect to Context7 MCP. Emdash does not modify your agent's config. See the respective MCP configuration sections above for your agent.
934+
935+
See the [Emdash repository](https://github.com/generalaction/emdash) for more information.
936+
937+
</Accordion>
852938
</AccordionGroup>
853939

854940
## Alternative Runtimes

0 commit comments

Comments
 (0)