c64-debug-mcp 1.0.8 → 1.0.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.
package/dist/http.cjs CHANGED
@@ -153,15 +153,6 @@ var import_zod3 = require("zod");
153
153
  var import_zod2 = require("zod");
154
154
  var warningSchema = warningItemSchema;
155
155
  function parseAddress16(input) {
156
- if (input === void 0) {
157
- throw new import_zod2.z.ZodError([
158
- {
159
- code: "custom",
160
- message: "Address is required",
161
- path: []
162
- }
163
- ]);
164
- }
165
156
  if (typeof input === "number") {
166
157
  if (!Number.isInteger(input) || input < 0 || input > 65535) {
167
158
  throw new import_zod2.z.ZodError([
@@ -224,15 +215,6 @@ function parseAddress16(input) {
224
215
  }
225
216
  var address16Schema = import_zod2.z.preprocess(parseAddress16, import_zod2.z.number().int().min(0).max(65535)).describe("16-bit C64 address: decimal (53248) or hex string with prefix ($D000, 0xD000)");
226
217
  function parseByte(input) {
227
- if (input === void 0) {
228
- throw new import_zod2.z.ZodError([
229
- {
230
- code: "custom",
231
- message: "Byte value is required",
232
- path: []
233
- }
234
- ]);
235
- }
236
218
  if (typeof input === "number") {
237
219
  if (!Number.isInteger(input) || input < 0 || input > 255) {
238
220
  throw new import_zod2.z.ZodError([
package/dist/http.js CHANGED
@@ -130,15 +130,6 @@ import { ZodError } from "zod";
130
130
  import { z as z2 } from "zod";
131
131
  var warningSchema = warningItemSchema;
132
132
  function parseAddress16(input) {
133
- if (input === void 0) {
134
- throw new z2.ZodError([
135
- {
136
- code: "custom",
137
- message: "Address is required",
138
- path: []
139
- }
140
- ]);
141
- }
142
133
  if (typeof input === "number") {
143
134
  if (!Number.isInteger(input) || input < 0 || input > 65535) {
144
135
  throw new z2.ZodError([
@@ -201,15 +192,6 @@ function parseAddress16(input) {
201
192
  }
202
193
  var address16Schema = z2.preprocess(parseAddress16, z2.number().int().min(0).max(65535)).describe("16-bit C64 address: decimal (53248) or hex string with prefix ($D000, 0xD000)");
203
194
  function parseByte(input) {
204
- if (input === void 0) {
205
- throw new z2.ZodError([
206
- {
207
- code: "custom",
208
- message: "Byte value is required",
209
- path: []
210
- }
211
- ]);
212
- }
213
195
  if (typeof input === "number") {
214
196
  if (!Number.isInteger(input) || input < 0 || input > 255) {
215
197
  throw new z2.ZodError([
package/dist/stdio.cjs CHANGED
@@ -150,15 +150,6 @@ var import_zod3 = require("zod");
150
150
  var import_zod2 = require("zod");
151
151
  var warningSchema = warningItemSchema;
152
152
  function parseAddress16(input) {
153
- if (input === void 0) {
154
- throw new import_zod2.z.ZodError([
155
- {
156
- code: "custom",
157
- message: "Address is required",
158
- path: []
159
- }
160
- ]);
161
- }
162
153
  if (typeof input === "number") {
163
154
  if (!Number.isInteger(input) || input < 0 || input > 65535) {
164
155
  throw new import_zod2.z.ZodError([
@@ -221,15 +212,6 @@ function parseAddress16(input) {
221
212
  }
222
213
  var address16Schema = import_zod2.z.preprocess(parseAddress16, import_zod2.z.number().int().min(0).max(65535)).describe("16-bit C64 address: decimal (53248) or hex string with prefix ($D000, 0xD000)");
223
214
  function parseByte(input) {
224
- if (input === void 0) {
225
- throw new import_zod2.z.ZodError([
226
- {
227
- code: "custom",
228
- message: "Byte value is required",
229
- path: []
230
- }
231
- ]);
232
- }
233
215
  if (typeof input === "number") {
234
216
  if (!Number.isInteger(input) || input < 0 || input > 255) {
235
217
  throw new import_zod2.z.ZodError([
package/dist/stdio.js CHANGED
@@ -127,15 +127,6 @@ import { ZodError } from "zod";
127
127
  import { z as z2 } from "zod";
128
128
  var warningSchema = warningItemSchema;
129
129
  function parseAddress16(input) {
130
- if (input === void 0) {
131
- throw new z2.ZodError([
132
- {
133
- code: "custom",
134
- message: "Address is required",
135
- path: []
136
- }
137
- ]);
138
- }
139
130
  if (typeof input === "number") {
140
131
  if (!Number.isInteger(input) || input < 0 || input > 65535) {
141
132
  throw new z2.ZodError([
@@ -198,15 +189,6 @@ function parseAddress16(input) {
198
189
  }
199
190
  var address16Schema = z2.preprocess(parseAddress16, z2.number().int().min(0).max(65535)).describe("16-bit C64 address: decimal (53248) or hex string with prefix ($D000, 0xD000)");
200
191
  function parseByte(input) {
201
- if (input === void 0) {
202
- throw new z2.ZodError([
203
- {
204
- code: "custom",
205
- message: "Byte value is required",
206
- path: []
207
- }
208
- ]);
209
- }
210
192
  if (typeof input === "number") {
211
193
  if (!Number.isInteger(input) || input < 0 || input > 255) {
212
194
  throw new z2.ZodError([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c64-debug-mcp",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Model Context Protocol server for C64 debugging via VICE emulator",
5
5
  "type": "module",
6
6
  "keywords": [