You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace `YOUR_API_KEY_HERE` with your actual API key. That's it! 🎉
88
79
89
-
### Cursor
80
+
</details>
81
+
82
+
<details>
83
+
<summary><b>Cursor</b></summary>
90
84
91
85
1. Open Cursor → Settings (`Cmd+,` or `Ctrl+,`)
92
86
2. Navigate to **"MCP"** in the left panel
@@ -108,7 +102,57 @@ Replace `YOUR_API_KEY_HERE` with your actual API key. That's it! 🎉
108
102
109
103
5. Save and restart Cursor
110
104
111
-
### Continue
105
+
</details>
106
+
107
+
<details>
108
+
<summary><b>Codex</b></summary>
109
+
110
+
OpenAI Codex CLI supports MCP via `~/.codex/config.toml`. Remote HTTP MCP is still evolving; the most reliable way today is to launch CodeAlive via Docker (stdio).
Gemini CLI has first-class MCP support via `~/.gemini/settings.json` (or workspace `.gemini/settings.json`). Add CodeAlive as a **streamable-http** server.
135
+
136
+
```json
137
+
{
138
+
"mcpServers": {
139
+
"codealive": {
140
+
"type": "streamable-http",
141
+
"url": "https://mcp.codealive.ai/api",
142
+
"requestOptions": {
143
+
"headers": {
144
+
"Authorization": "Bearer YOUR_API_KEY_HERE"
145
+
}
146
+
}
147
+
}
148
+
}
149
+
}
150
+
```
151
+
152
+
</details>
153
+
154
+
<details>
155
+
<summary><b>Continue</b></summary>
112
156
113
157
1. Create/edit `.continue/config.yaml` in your project or `~/.continue/config.yaml`
114
158
2. Add this configuration:
@@ -117,15 +161,18 @@ Replace `YOUR_API_KEY_HERE` with your actual API key. That's it! 🎉
117
161
mcpServers:
118
162
- name: CodeAlive
119
163
type: streamable-http
120
-
url: https://mcp.codealive.ai/api
164
+
url: https://mcp.codealive.ai/api
121
165
requestOptions:
122
166
headers:
123
167
Authorization: "Bearer YOUR_API_KEY_HERE"
124
168
```
125
169
126
170
3. Restart VS Code
127
171
128
-
### Visual Studio Code with GitHub Copilot
172
+
</details>
173
+
174
+
<details>
175
+
<summary><b>Visual Studio Code with GitHub Copilot</b></summary>
129
176
130
177
1. Open Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P`)
131
178
2. Run **"MCP: Add Server"**
@@ -148,11 +195,17 @@ mcpServers:
148
195
149
196
5. Restart VS Code
150
197
151
-
### Claude Desktop
198
+
</details>
199
+
200
+
<details>
201
+
<summary><b>Claude Desktop</b></summary>
152
202
153
203
> **Note:** Claude Desktop remote MCP requires OAuth authentication. Use Docker option below for Bearer token support.
154
204
155
-
### Cline
205
+
</details>
206
+
207
+
<details>
208
+
<summary><b>Cline</b></summary>
156
209
157
210
1. Open Cline extension in VS Code
158
211
2. Click the MCP Servers icon to configure
@@ -173,28 +226,10 @@ mcpServers:
173
226
174
227
4. Save and restart VS Code
175
228
176
-
### Codex
177
-
178
-
OpenAI Codex CLI supports MCP via `~/.codex/config.toml`. Remote HTTP MCP is still evolving; the most reliable way today is to launch CodeAlive via Docker (stdio).
Add CodeAlive as a **remote** MCP server in your `opencode.json`.
200
235
@@ -214,7 +249,10 @@ Add CodeAlive as a **remote** MCP server in your `opencode.json`.
214
249
}
215
250
```
216
251
217
-
### Qwen Code
252
+
</details>
253
+
254
+
<details>
255
+
<summary><b>Qwen Code</b></summary>
218
256
219
257
Qwen Code supports MCP via `mcpServers` in its `settings.json` and multiple transports (stdio/SSE/streamable-http). Use **streamable-http** when available; otherwise use Docker (stdio).
220
258
@@ -250,33 +288,16 @@ Qwen Code supports MCP via `mcpServers` in its `settings.json` and multiple tran
250
288
}
251
289
```
252
290
253
-
### Gemini CLI
254
-
255
-
Gemini CLI has first-class MCP support via `~/.gemini/settings.json` (or workspace `.gemini/settings.json`). Add CodeAlive as a **streamable-http** server.
256
-
257
-
```json
258
-
{
259
-
"mcpServers": {
260
-
"codealive": {
261
-
"type": "streamable-http",
262
-
"url": "https://mcp.codealive.ai/api",
263
-
"requestOptions": {
264
-
"headers": {
265
-
"Authorization": "Bearer YOUR_API_KEY_HERE"
266
-
}
267
-
}
268
-
}
269
-
}
270
-
}
271
-
```
291
+
</details>
272
292
273
293
---
274
294
275
295
## 🐳 Alternative: Docker Setup
276
296
277
297
If you prefer Docker over the remote service, use our Docker image:
278
298
279
-
### Claude Desktop with Docker
299
+
<details>
300
+
<summary><b>Claude Desktop with Docker</b></summary>
280
301
281
302
For local development or if you prefer Docker over the remote service:
282
303
@@ -303,7 +324,10 @@ For local development or if you prefer Docker over the remote service:
303
324
304
325
3. Restart Claude Desktop
305
326
306
-
### Cursor with Docker
327
+
</details>
328
+
329
+
<details>
330
+
<summary><b>Cursor with Docker</b></summary>
307
331
308
332
```json
309
333
{
@@ -320,7 +344,10 @@ For local development or if you prefer Docker over the remote service:
320
344
}
321
345
```
322
346
323
-
### Continue with Docker
347
+
</details>
348
+
349
+
<details>
350
+
<summary><b>Continue with Docker</b></summary>
324
351
325
352
```yaml
326
353
mcpServers:
@@ -336,7 +363,10 @@ mcpServers:
336
363
- ghcr.io/codealive-ai/codealive-mcp:v0.2.0
337
364
```
338
365
339
-
### VS Code with Docker
366
+
</details>
367
+
368
+
<details>
369
+
<summary><b>VS Code with Docker</b></summary>
340
370
341
371
Create `.vscode/mcp.json` in your workspace:
342
372
@@ -355,7 +385,10 @@ Create `.vscode/mcp.json` in your workspace:
355
385
}
356
386
```
357
387
358
-
### Cline with Docker
388
+
</details>
389
+
390
+
<details>
391
+
<summary><b>Cline with Docker</b></summary>
359
392
360
393
1. Open Cline extension in VS Code
361
394
2. Click the MCP Servers icon to configure
@@ -376,6 +409,8 @@ Create `.vscode/mcp.json` in your workspace:
0 commit comments