debugger-mcp-server 0.1.2 → 0.1.3

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 +5 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,17 +17,7 @@ The two components communicate over HTTP. The extension writes its port to `~/.a
17
17
 
18
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
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
20
+ ### 2. Connect Your AI Agent
31
21
 
32
22
  Add this to your MCP client configuration (e.g. Claude Desktop, Claude Code, Cursor):
33
23
 
@@ -35,12 +25,15 @@ Add this to your MCP client configuration (e.g. Claude Desktop, Claude Code, Cur
35
25
  {
36
26
  "mcpServers": {
37
27
  "debugger": {
38
- "url": "http://localhost:6090/mcp"
28
+ "command": "npx",
29
+ "args": ["debugger-mcp-server"]
39
30
  }
40
31
  }
41
32
  }
42
33
  ```
43
34
 
35
+ The package is available on [npm](https://www.npmjs.com/package/debugger-mcp-server).
36
+
44
37
  ## Available Tools
45
38
 
46
39
  | 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.3",
4
4
  "description": "MCP server for VS Code debugging via bridge extension",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",