From 842528f9becf02cc130a2bdaa5047de50671030f Mon Sep 17 00:00:00 2001 From: Muhammad Osama Date: Fri, 11 Jul 2025 02:24:40 +0500 Subject: [PATCH] json fix for copilot --- README.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f60307e..5302146 100644 --- a/README.md +++ b/README.md @@ -368,16 +368,18 @@ Edit `~/.config/Claude/claude_desktop_config.json`: **Configure VS Code settings** in `.vscode/settings.json`: ```json { - "mcp.servers": { - "hexstrike-ai": { - "command": "python3", - "args": [ - "/path/to/hexstrike-ai/hexstrike_mcp.py", - "--server", "http://localhost:5000" - ], - "description": "HexStrike AI MCP Agents v5.0" - } - } + "servers": { + "hexstrike": { + "type": "stdio", + "command": "python3", + "args": [ + "/path/to/hexstrike-ai/hexstrike_mcp.py", + "--server", + "http://localhost:5000" + ] + } + }, + "inputs": [] } ```