debugger-mcp-server 0.1.8 → 0.1.9

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 +9 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,15 @@ An MCP server that enables AI agents to debug code in VS Code. It exposes debugg
5
5
  ## Setup
6
6
 
7
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):
8
+ 2. Add the MCP server to your client configuration:
9
+
10
+ **Claude Code:**
11
+
12
+ ```bash
13
+ claude mcp add debugger --scope user -- npx debugger-mcp-server
14
+ ```
15
+
16
+ **Claude Desktop, Cursor, or other MCP clients:**
9
17
 
10
18
  ```json
11
19
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "debugger-mcp-server",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "MCP server for VS Code debugging via bridge extension",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",