json fix for copilot

This commit is contained in:
Muhammad Osama
2025-07-11 02:24:40 +05:00
parent 9fb138725f
commit 842528f9be

View File

@@ -368,16 +368,18 @@ Edit `~/.config/Claude/claude_desktop_config.json`:
**Configure VS Code settings** in `.vscode/settings.json`: **Configure VS Code settings** in `.vscode/settings.json`:
```json ```json
{ {
"mcp.servers": { "servers": {
"hexstrike-ai": { "hexstrike": {
"command": "python3", "type": "stdio",
"args": [ "command": "python3",
"/path/to/hexstrike-ai/hexstrike_mcp.py", "args": [
"--server", "http://localhost:5000" "/path/to/hexstrike-ai/hexstrike_mcp.py",
], "--server",
"description": "HexStrike AI MCP Agents v5.0" "http://localhost:5000"
} ]
} }
},
"inputs": []
} }
``` ```