@i-scope/debugger 0.2.1 → 0.2.2

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this package will be documented here. The format
4
4
  is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
5
5
  this project adheres to [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## [0.2.2] — 2026-09-02
8
+
9
+ ### Changed
10
+
11
+ - README: Cursor / VS Code MCP path is **iScope: Enable MCP** (extension
12
+ 0.1.6+), not a hand-written `.cursor/mcp.json`. Canonical server id
13
+ `iscope-debug` (was `iscope-debugger` in the sample).
14
+
7
15
  ## [0.2.1] — 2026-09-02
8
16
 
9
17
  ### Changed
package/README.md CHANGED
@@ -27,10 +27,11 @@ individually in your own `package.json`.
27
27
 
28
28
  | Persona | Recommended install | Entry point |
29
29
  |---------|---------------------|-------------|
30
- | AI agent through MCP | `@i-scope/debugger` (full set) | `import ... from '@i-scope/mcp-server'`; or wire `.cursor/mcp.json` |
30
+ | AI agent through MCP (Cursor / VS Code) | Marketplace extension `i-scope.iscope-debugger` | Command Palette → **iScope: Enable MCP** |
31
+ | AI agent through MCP (Claude Code / other) | `@i-scope/mcp-server` (`npx -y`) | client's `mcp.json` — see `@i-scope/mcp-server` README |
31
32
  | DAP host integration (WebStorm, Neovim DAP, custom IDE) | `@i-scope/debugger` (full set) | `import { AjsDebugSession } from '@i-scope/dap-adapter'` |
32
33
  | CLI / custom Node tooling | `@i-scope/debugger` (full set) OR point-pick `@i-scope/iscope-bridge-client` standalone | `import { IScopeBridge } from '@i-scope/iscope-bridge-client'` |
33
- | VS Code / Cursor end-user | **Do NOT install this.** Install the `.vsix` extension from Marketplace — it bundles everything. | F5 in `.ajs` / `.ts` files |
34
+ | VS Code / Cursor F5 debug | **Do NOT install this npm meta.** Install the Marketplace extension — it bundles the DAP stack. | F5 in `.ajs` / `.ts` files; MCP via **iScope: Enable MCP** |
34
35
 
35
36
  Note that `@i-scope/debugger` (this package, published on **npmjs.com**)
36
37
  and the unscoped `iscope-debugger` (the VS Code / Cursor extension
@@ -77,13 +78,20 @@ MCP tools) that verify the above and return a structured verdict.
77
78
 
78
79
  ## Quick start — MCP integration (most common path)
79
80
 
80
- After `npm install @i-scope/debugger`, point your MCP client (Cursor,
81
- Claude Code, …) at the bundled server. Example `.cursor/mcp.json`:
81
+ **Cursor / VS Code:** install
82
+ [iScope .ajs Debugger](https://marketplace.visualstudio.com/items?itemName=i-scope.iscope-debugger)
83
+ and run **iScope: Enable MCP**. That writes the `npx -y @i-scope/mcp-server`
84
+ entry into workspace `.cursor/mcp.json` or `.vscode/mcp.json`. Then
85
+ `Developer: Reload Window` in **this editor** (not Oscilloscope).
86
+
87
+ **Other MCP clients** (Claude Code, …), after `npm install @i-scope/debugger`
88
+ or with `npx` only — example Cursor-style file if the client uses
89
+ `mcpServers` (server id `iscope-debug`):
82
90
 
83
91
  ```json
84
92
  {
85
93
  "mcpServers": {
86
- "iscope-debugger": {
94
+ "iscope-debug": {
87
95
  "command": "npx",
88
96
  "args": ["-y", "@i-scope/mcp-server"]
89
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i-scope/debugger",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "license": "MIT",
5
5
  "description": "iScope Debugger — meta-package. Single-install entry point for the full debugger SDK: DAP adapter for IDE integrations, MCP server for AI agents, Win32 native helper bridge, source-map / VLST / COM-protocol building blocks. Pure dependency umbrella; no runtime code of its own.",
6
6
  "keywords": [