c64-debug-mcp 0.1.0 → 0.1.8
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/dist/http.cjs +1 -1
- package/dist/http.js +1 -1
- package/dist/stdio.cjs +1 -1
- package/dist/stdio.js +1 -1
- package/package.json +3 -8
package/dist/http.cjs
CHANGED
|
@@ -173,7 +173,7 @@ var c64PartialRegisterValueSchema = import_zod2.z.object(
|
|
|
173
173
|
);
|
|
174
174
|
var debugStateSchema = import_zod2.z.object({
|
|
175
175
|
executionState: executionStateSchema.describe("Current execution state of the emulator"),
|
|
176
|
-
lastStopReason: stopReasonSchema.describe("Reason the emulator
|
|
176
|
+
lastStopReason: stopReasonSchema.describe("Reason the emulator stopped in the monitor"),
|
|
177
177
|
programCounter: address16Schema.describe("Current program counter"),
|
|
178
178
|
registers: c64RegisterValueSchema
|
|
179
179
|
});
|
package/dist/http.js
CHANGED
|
@@ -150,7 +150,7 @@ var c64PartialRegisterValueSchema = z2.object(
|
|
|
150
150
|
);
|
|
151
151
|
var debugStateSchema = z2.object({
|
|
152
152
|
executionState: executionStateSchema.describe("Current execution state of the emulator"),
|
|
153
|
-
lastStopReason: stopReasonSchema.describe("Reason the emulator
|
|
153
|
+
lastStopReason: stopReasonSchema.describe("Reason the emulator stopped in the monitor"),
|
|
154
154
|
programCounter: address16Schema.describe("Current program counter"),
|
|
155
155
|
registers: c64RegisterValueSchema
|
|
156
156
|
});
|
package/dist/stdio.cjs
CHANGED
|
@@ -170,7 +170,7 @@ var c64PartialRegisterValueSchema = import_zod2.z.object(
|
|
|
170
170
|
);
|
|
171
171
|
var debugStateSchema = import_zod2.z.object({
|
|
172
172
|
executionState: executionStateSchema.describe("Current execution state of the emulator"),
|
|
173
|
-
lastStopReason: stopReasonSchema.describe("Reason the emulator
|
|
173
|
+
lastStopReason: stopReasonSchema.describe("Reason the emulator stopped in the monitor"),
|
|
174
174
|
programCounter: address16Schema.describe("Current program counter"),
|
|
175
175
|
registers: c64RegisterValueSchema
|
|
176
176
|
});
|
package/dist/stdio.js
CHANGED
|
@@ -147,7 +147,7 @@ var c64PartialRegisterValueSchema = z2.object(
|
|
|
147
147
|
);
|
|
148
148
|
var debugStateSchema = z2.object({
|
|
149
149
|
executionState: executionStateSchema.describe("Current execution state of the emulator"),
|
|
150
|
-
lastStopReason: stopReasonSchema.describe("Reason the emulator
|
|
150
|
+
lastStopReason: stopReasonSchema.describe("Reason the emulator stopped in the monitor"),
|
|
151
151
|
programCounter: address16Schema.describe("Current program counter"),
|
|
152
152
|
registers: c64RegisterValueSchema
|
|
153
153
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "c64-debug-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Model Context Protocol server for C64 debugging via VICE emulator",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
],
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "https://github.com/henols/c64-debug-mcp.git",
|
|
19
|
+
"url": "git+https://github.com/henols/c64-debug-mcp.git",
|
|
20
20
|
"directory": "packages/c64-debug-mcp"
|
|
21
21
|
},
|
|
22
22
|
"bugs": "https://github.com/henols/c64-debug-mcp/issues",
|
|
@@ -39,12 +39,7 @@
|
|
|
39
39
|
"build": "tsup src/stdio.ts src/http.ts --format esm,cjs --dts --no-splitting --clean",
|
|
40
40
|
"check": "tsc --noEmit",
|
|
41
41
|
"prepublishOnly": "npm run build && npm run check",
|
|
42
|
-
"dev:http": "C64_DEBUG_CONSOLE_LOGS=1 /home/henrik/.nvm/versions/node/v22.13.0/bin/node ../../node_modules/tsx/dist/cli.mjs watch src/http.ts"
|
|
43
|
-
"smoke:http": "node tests/smoke-http.mjs",
|
|
44
|
-
"smoke:http:dev": "C64_DEBUG_HTTP_URL=http://127.0.0.1:39080/mcp node tests/smoke-http.mjs",
|
|
45
|
-
"test:http:live": "bash ../../scripts/test-live-http.sh basic",
|
|
46
|
-
"test:http:live:advanced": "bash ../../scripts/test-live-http.sh advanced",
|
|
47
|
-
"test:http:live:tools": "bash ../../scripts/test-live-http.sh tools"
|
|
42
|
+
"dev:http": "C64_DEBUG_CONSOLE_LOGS=1 /home/henrik/.nvm/versions/node/v22.13.0/bin/node ../../node_modules/tsx/dist/cli.mjs watch src/http.ts"
|
|
48
43
|
},
|
|
49
44
|
"dependencies": {
|
|
50
45
|
"@mastra/core": "^1.15.0",
|