Skip to content

Commit 438c958

Browse files
authored
Adds AMP and Kiro to MCP config docs
1 parent 3a9ba7b commit 438c958

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

docs/configure-mcp.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,19 @@ Nearly all IDEs and AI assistants use the following format:
4646

4747
## Integrating with AI Assistants
4848

49+
- [VS Code (including Copilot)](#vs-code-including-copilot)
50+
- [Cursor](#cursor)
51+
- [Claude Desktop](#claude-desktop)
52+
- [Claude Code](#claude-code)
53+
- [Trae](#trae)
54+
- [Windsurf](#windsurf)
55+
- [Void](#void)
56+
- [Cline](#cline)
57+
- [Augment](#augment)
58+
- [AMP](#amp)
59+
- [Kiro](#kiro)
60+
61+
4962
### VS Code (including Copilot)
5063

5164
Using the copied configuration, manually add the MCP server into your `.vscode/mcp.json`:
@@ -241,3 +254,42 @@ Using `settings.json`:
241254
}
242255
}
243256
```
257+
258+
### AMP
259+
260+
Using `settings.json`:
261+
262+
```json
263+
"amp.mcpServers": {
264+
"mcp-wcai-http": {
265+
"type": "http",
266+
"url": "http://<host>:<port>/mcp"
267+
},
268+
"mcp-wcai-sse": {
269+
"type": "sse",
270+
"url": "http://<host>:<port>/sse"
271+
}
272+
}
273+
```
274+
275+
### Kiro
276+
277+
Copy the MCP server configuration from the VS Code notification and paste it into:
278+
279+
- Workspace-level `.void-editor/mcp.json`
280+
- User-level `~/.kiro/settings/mcp.json`
281+
282+
```json
283+
{
284+
"mcpServers": {
285+
"mcp-wcai-http": {
286+
"type": "http",
287+
"url": "http://<host>:<port>/mcp"
288+
},
289+
"mcp-wcai-sse": {
290+
"type": "sse",
291+
"url": "http://<host>:<port>/sse"
292+
}
293+
}
294+
}
295+
```

0 commit comments

Comments
 (0)