File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed
Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff 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
5164Using 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+ ```
You can’t perform that action at this time.
0 commit comments