debugger-mcp-server 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -27
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,45 +2,24 @@
2
2
 
3
3
  An MCP server that enables AI agents to debug code in VS Code. It exposes debugging tools (breakpoints, stepping, variable inspection) over the [Model Context Protocol](https://modelcontextprotocol.io), bridging to a companion VS Code extension that controls the actual debugger.
4
4
 
5
- ## Architecture
6
-
7
- ```
8
- AI Agent <--> MCP Server (:6090) <--> VS Code Extension Bridge (:7070) <--> VS Code Debugger
9
- (this repo) (agentic-debugger extension)
10
- ```
11
-
12
- The two components communicate over HTTP. The extension writes its port to `~/.agentic-debugger/bridge-port`, which the MCP server reads to discover the bridge automatically.
13
-
14
5
  ## Setup
15
6
 
16
- ### 1. Install the VS Code Extension
17
-
18
- Install [Agentic Debugger](https://open-vsx.org/extension/devinat1/agentic-debugger) on Cursor or Vscode. Once active, it starts a bridge server on port **7070** (configurable via `agenticDebugger.bridgePort` in VS Code settings).
19
-
20
- ### 2. Start the MCP Server
21
-
22
- ```bash
23
- npm install
24
- npm run build
25
- npm start
26
- ```
27
-
28
- The server starts on port **6090** by default. Override with `PORT=8080 npm start`.
29
-
30
- ### 3. Connect Your AI Agent
31
-
32
- Add this to your MCP client configuration (e.g. Claude Desktop, Claude Code, Cursor):
7
+ 1. Install [Agentic Debugger](https://open-vsx.org/extension/devinat1/agentic-debugger) on Cursor or VS Code
8
+ 2. Add the MCP server to your client configuration (e.g. Claude Desktop, Claude Code, Cursor):
33
9
 
34
10
  ```json
35
11
  {
36
12
  "mcpServers": {
37
13
  "debugger": {
38
- "url": "http://localhost:6090/mcp"
14
+ "command": "npx",
15
+ "args": ["debugger-mcp-server"]
39
16
  }
40
17
  }
41
18
  }
42
19
  ```
43
20
 
21
+ The package is available on [npm](https://www.npmjs.com/package/debugger-mcp-server).
22
+
44
23
  ## Available Tools
45
24
 
46
25
  | Category | Tool | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "debugger-mcp-server",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server for VS Code debugging via bridge extension",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",