From 432d0464872b95af986949bf90f18f2fe76ddd88 Mon Sep 17 00:00:00 2001 From: enesgules Date: Tue, 2 Dec 2025 12:38:48 +0300 Subject: [PATCH] docs: add Kilo Code, Google Antigravity, and Emdash installation guides --- docs/installation.mdx | 88 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 87 insertions(+), 1 deletion(-) diff --git a/docs/installation.mdx b/docs/installation.mdx index f3731cf5..d931ca6e 100644 --- a/docs/installation.mdx +++ b/docs/installation.mdx @@ -287,6 +287,71 @@ Get your Smithery key from your account at [smithery.ai](https://smithery.ai/ser + + You can configure the Context7 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) + + **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 URL: `https://mcp.context7.com/mcp` + 7. Add Header - Key: `Authorization`, Value: `Bearer YOUR_API_KEY` + 8. Click **Save** + + **Manual Configuration** (`.kilocode/mcp.json`): + ```json + { + "mcpServers": { + "context7": { + "type": "streamable-http", + "url": "https://mcp.context7.com/mcp", + "headers": { + "Authorization": "Bearer YOUR_API_KEY" + }, + "alwaysAllow": [], + "disabled": false + } + } + } + ``` + + + + + **Remote Server**: + ```json + { + "mcpServers": { + "context7": { + "serverUrl": "https://mcp.context7.com/mcp", + "headers": { + "CONTEXT7_API_KEY": "YOUR_API_KEY" + } + } + } + } + ``` + + **Local Server**: + ```json + { + "mcpServers": { + "context7": { + "command": "npx", + "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"] + } + } + } + ``` + + + Open `~/.gemini/settings.json` and add: @@ -370,8 +435,14 @@ Get your Smithery key from your account at [smithery.ai](https://smithery.ai/ser - Add to your MCP server settings: + **Remote Server**: + ```toml + [mcp_servers.context7] + url = "https://mcp.context7.com/mcp" + http_headers = { "CONTEXT7_API_KEY" = "YOUR_API_KEY" } + ``` + **Local Server**: ```toml [mcp_servers.context7] 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 Once configured, Context7 tools will be available in your droid sessions. Type `/mcp` within droid to manage servers, authenticate, and view available tools. + + + [Emdash](https://github.com/generalaction/emdash) is an orchestration layer for running multiple coding agents in parallel. Provider-agnostic, worktree-isolated, and local-first. + + **What Emdash provides:** + - Global toggle: Settings → MCP → "Enable Context7 MCP" + - Per-workspace enable: The Context7 button in the ProviderBar (off by default). First click enables it for that workspace. Clicking again disables it. + - ProviderBar: The Context7 button shows status, a short explanation, and a link to docs + + **What you still need to do:** + 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. + + See the [Emdash repository](https://github.com/generalaction/emdash) for more information. + + ## Alternative Runtimes