@i-scope/mcp-server 0.4.3 → 0.4.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.
- package/CHANGELOG.md +9 -0
- package/README.md +34 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ 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.4.4] — 2026-09-02
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- README Quick start: Cursor / VS Code users run **iScope: Enable MCP**
|
|
12
|
+
in the Marketplace extension (0.1.6+). Manual `mcp.json` remains for
|
|
13
|
+
other MCP clients. Reload is `Developer: Reload Window` in the editor,
|
|
14
|
+
not Oscilloscope.
|
|
15
|
+
|
|
7
16
|
## [0.4.3] — 2026-09-02
|
|
8
17
|
|
|
9
18
|
### Changed
|
package/README.md
CHANGED
|
@@ -11,8 +11,10 @@
|
|
|
11
11
|
> Debugger SDK (DAP adapter, native helper, source-map / VLST / COM
|
|
12
12
|
> leaves). Install `@i-scope/mcp-server` **directly** only when you want
|
|
13
13
|
> the MCP server surface without the rest of the SDK on your top-level
|
|
14
|
-
> `package.json` (e.g. an MCP-only
|
|
15
|
-
> `npx -y @i-scope/mcp-server`).
|
|
14
|
+
> `package.json` (e.g. an MCP-only Claude Code config via
|
|
15
|
+
> `npx -y @i-scope/mcp-server`). Cursor / VS Code end-users should
|
|
16
|
+
> install the **iScope .ajs Debugger** extension from Marketplace and
|
|
17
|
+
> run **iScope: Enable MCP** instead of editing `mcp.json` by hand.
|
|
16
18
|
|
|
17
19
|
Model Context Protocol (MCP) server that lets AI agents drive a
|
|
18
20
|
`Oscilloscope.exe` debug session for `.ajs` scripts — set breakpoints,
|
|
@@ -37,11 +39,20 @@ through standard MCP tools layered on top of the iScope DAP adapter.
|
|
|
37
39
|
|
|
38
40
|
2. **Install** the MCP server. Two flavours:
|
|
39
41
|
|
|
40
|
-
**
|
|
42
|
+
**Cursor / VS Code (recommended)** — install
|
|
43
|
+
[iScope .ajs Debugger](https://marketplace.visualstudio.com/items?itemName=i-scope.iscope-debugger)
|
|
44
|
+
(`cursor --install-extension i-scope.iscope-debugger` or the same
|
|
45
|
+
with `code`). Command Palette → **iScope: Enable MCP** → confirm.
|
|
46
|
+
That merges `npx -y @i-scope/mcp-server` into workspace
|
|
47
|
+
`.cursor/mcp.json` (Cursor) or `.vscode/mcp.json` (VS Code) and
|
|
48
|
+
leaves other servers alone. Then **Developer: Reload Window** in
|
|
49
|
+
**this editor** (not Oscilloscope).
|
|
50
|
+
|
|
51
|
+
**Other MCP clients / no extension** — no repo clone:
|
|
41
52
|
|
|
42
53
|
```pwsh
|
|
43
54
|
npm install -g @i-scope/mcp-server
|
|
44
|
-
# ...or use npx in mcp.json (see step 3).
|
|
55
|
+
# ...or use npx in the client's mcp.json (see step 3).
|
|
45
56
|
```
|
|
46
57
|
|
|
47
58
|
This pulls in `@i-scope/dap-adapter`, `@i-scope/iscope-bridge-client`,
|
|
@@ -57,7 +68,9 @@ through standard MCP tools layered on top of the iScope DAP adapter.
|
|
|
57
68
|
npm --workspace=@i-scope/iscope-bridge run build:msbuild
|
|
58
69
|
```
|
|
59
70
|
|
|
60
|
-
3. **Configure your MCP client**
|
|
71
|
+
3. **Configure your MCP client** only if you skipped **iScope: Enable MCP**.
|
|
72
|
+
|
|
73
|
+
Cursor (`.cursor/mcp.json`):
|
|
61
74
|
|
|
62
75
|
```json
|
|
63
76
|
{
|
|
@@ -70,6 +83,20 @@ through standard MCP tools layered on top of the iScope DAP adapter.
|
|
|
70
83
|
}
|
|
71
84
|
```
|
|
72
85
|
|
|
86
|
+
VS Code (`.vscode/mcp.json`):
|
|
87
|
+
|
|
88
|
+
```json
|
|
89
|
+
{
|
|
90
|
+
"servers": {
|
|
91
|
+
"iscope-debug": {
|
|
92
|
+
"type": "stdio",
|
|
93
|
+
"command": "npx",
|
|
94
|
+
"args": ["-y", "@i-scope/mcp-server"]
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
73
100
|
For local development from the monorepo:
|
|
74
101
|
|
|
75
102
|
```json
|
|
@@ -86,7 +113,8 @@ through standard MCP tools layered on top of the iScope DAP adapter.
|
|
|
86
113
|
`ISCOPE_EXTENSION_PATH` is optional now — set it only when you want
|
|
87
114
|
to override the helper-binary lookup with a custom bundled root.
|
|
88
115
|
|
|
89
|
-
|
|
116
|
+
4. **Reload this editor** (Command Palette → `Developer: Reload Window`
|
|
117
|
+
in Cursor or VS Code — not Oscilloscope) and ask your AI agent:
|
|
90
118
|
|
|
91
119
|
> "Run `dist/Analyzer.ajs` and pause on `src/index.ts:42`, show me
|
|
92
120
|
> the value of `signal` at that point."
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i-scope/mcp-server",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Model Context Protocol server for iScope / Oscilloscope.exe debug & control. Lets AI agents drive a .ajs debug session — breakpoints, step, variables, evaluate — through standard MCP tools layered on top of the iScope DAP adapter.",
|
|
6
6
|
"keywords": [
|