fixparser-plugin-mcp 9.1.7-dde631c6 → 9.1.7-e016b83b

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.
@@ -25,1269 +25,9 @@ __export(MCPLocal_exports, {
25
25
  module.exports = __toCommonJS(MCPLocal_exports);
26
26
  var import_server = require("@modelcontextprotocol/sdk/server/index.js");
27
27
  var import_stdio = require("@modelcontextprotocol/sdk/server/stdio.js");
28
- var import_types = require("@modelcontextprotocol/sdk/types.js");
29
- var import_zod5 = require("zod");
30
-
31
- // ../../node_modules/zod-to-json-schema/dist/esm/Options.js
32
- var ignoreOverride = Symbol("Let zodToJsonSchema decide on which parser to use");
33
- var defaultOptions = {
34
- name: void 0,
35
- $refStrategy: "root",
36
- basePath: ["#"],
37
- effectStrategy: "input",
38
- pipeStrategy: "all",
39
- dateStrategy: "format:date-time",
40
- mapStrategy: "entries",
41
- removeAdditionalStrategy: "passthrough",
42
- allowedAdditionalProperties: true,
43
- rejectedAdditionalProperties: false,
44
- definitionPath: "definitions",
45
- target: "jsonSchema7",
46
- strictUnions: false,
47
- definitions: {},
48
- errorMessages: false,
49
- markdownDescription: false,
50
- patternStrategy: "escape",
51
- applyRegexFlags: false,
52
- emailStrategy: "format:email",
53
- base64Strategy: "contentEncoding:base64",
54
- nameStrategy: "ref"
55
- };
56
- var getDefaultOptions = (options) => typeof options === "string" ? {
57
- ...defaultOptions,
58
- name: options
59
- } : {
60
- ...defaultOptions,
61
- ...options
62
- };
63
-
64
- // ../../node_modules/zod-to-json-schema/dist/esm/Refs.js
65
- var getRefs = (options) => {
66
- const _options = getDefaultOptions(options);
67
- const currentPath = _options.name !== void 0 ? [..._options.basePath, _options.definitionPath, _options.name] : _options.basePath;
68
- return {
69
- ..._options,
70
- currentPath,
71
- propertyPath: void 0,
72
- seen: new Map(Object.entries(_options.definitions).map(([name, def]) => [
73
- def._def,
74
- {
75
- def: def._def,
76
- path: [..._options.basePath, _options.definitionPath, name],
77
- // Resolution of references will be forced even though seen, so it's ok that the schema is undefined here for now.
78
- jsonSchema: void 0
79
- }
80
- ]))
81
- };
82
- };
83
-
84
- // ../../node_modules/zod-to-json-schema/dist/esm/errorMessages.js
85
- function addErrorMessage(res, key, errorMessage, refs) {
86
- if (!refs?.errorMessages)
87
- return;
88
- if (errorMessage) {
89
- res.errorMessage = {
90
- ...res.errorMessage,
91
- [key]: errorMessage
92
- };
93
- }
94
- }
95
- function setResponseValueAndErrors(res, key, value, errorMessage, refs) {
96
- res[key] = value;
97
- addErrorMessage(res, key, errorMessage, refs);
98
- }
99
-
100
- // ../../node_modules/zod-to-json-schema/dist/esm/selectParser.js
101
- var import_zod4 = require("zod");
102
-
103
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/any.js
104
- function parseAnyDef() {
105
- return {};
106
- }
107
-
108
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/array.js
109
- var import_zod = require("zod");
110
- function parseArrayDef(def, refs) {
111
- const res = {
112
- type: "array"
113
- };
114
- if (def.type?._def && def.type?._def?.typeName !== import_zod.ZodFirstPartyTypeKind.ZodAny) {
115
- res.items = parseDef(def.type._def, {
116
- ...refs,
117
- currentPath: [...refs.currentPath, "items"]
118
- });
119
- }
120
- if (def.minLength) {
121
- setResponseValueAndErrors(res, "minItems", def.minLength.value, def.minLength.message, refs);
122
- }
123
- if (def.maxLength) {
124
- setResponseValueAndErrors(res, "maxItems", def.maxLength.value, def.maxLength.message, refs);
125
- }
126
- if (def.exactLength) {
127
- setResponseValueAndErrors(res, "minItems", def.exactLength.value, def.exactLength.message, refs);
128
- setResponseValueAndErrors(res, "maxItems", def.exactLength.value, def.exactLength.message, refs);
129
- }
130
- return res;
131
- }
132
-
133
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js
134
- function parseBigintDef(def, refs) {
135
- const res = {
136
- type: "integer",
137
- format: "int64"
138
- };
139
- if (!def.checks)
140
- return res;
141
- for (const check of def.checks) {
142
- switch (check.kind) {
143
- case "min":
144
- if (refs.target === "jsonSchema7") {
145
- if (check.inclusive) {
146
- setResponseValueAndErrors(res, "minimum", check.value, check.message, refs);
147
- } else {
148
- setResponseValueAndErrors(res, "exclusiveMinimum", check.value, check.message, refs);
149
- }
150
- } else {
151
- if (!check.inclusive) {
152
- res.exclusiveMinimum = true;
153
- }
154
- setResponseValueAndErrors(res, "minimum", check.value, check.message, refs);
155
- }
156
- break;
157
- case "max":
158
- if (refs.target === "jsonSchema7") {
159
- if (check.inclusive) {
160
- setResponseValueAndErrors(res, "maximum", check.value, check.message, refs);
161
- } else {
162
- setResponseValueAndErrors(res, "exclusiveMaximum", check.value, check.message, refs);
163
- }
164
- } else {
165
- if (!check.inclusive) {
166
- res.exclusiveMaximum = true;
167
- }
168
- setResponseValueAndErrors(res, "maximum", check.value, check.message, refs);
169
- }
170
- break;
171
- case "multipleOf":
172
- setResponseValueAndErrors(res, "multipleOf", check.value, check.message, refs);
173
- break;
174
- }
175
- }
176
- return res;
177
- }
178
-
179
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js
180
- function parseBooleanDef() {
181
- return {
182
- type: "boolean"
183
- };
184
- }
185
-
186
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/branded.js
187
- function parseBrandedDef(_def, refs) {
188
- return parseDef(_def.type._def, refs);
189
- }
190
-
191
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/catch.js
192
- var parseCatchDef = (def, refs) => {
193
- return parseDef(def.innerType._def, refs);
194
- };
195
-
196
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/date.js
197
- function parseDateDef(def, refs, overrideDateStrategy) {
198
- const strategy = overrideDateStrategy ?? refs.dateStrategy;
199
- if (Array.isArray(strategy)) {
200
- return {
201
- anyOf: strategy.map((item, i) => parseDateDef(def, refs, item))
202
- };
203
- }
204
- switch (strategy) {
205
- case "string":
206
- case "format:date-time":
207
- return {
208
- type: "string",
209
- format: "date-time"
210
- };
211
- case "format:date":
212
- return {
213
- type: "string",
214
- format: "date"
215
- };
216
- case "integer":
217
- return integerDateParser(def, refs);
218
- }
219
- }
220
- var integerDateParser = (def, refs) => {
221
- const res = {
222
- type: "integer",
223
- format: "unix-time"
224
- };
225
- if (refs.target === "openApi3") {
226
- return res;
227
- }
228
- for (const check of def.checks) {
229
- switch (check.kind) {
230
- case "min":
231
- setResponseValueAndErrors(
232
- res,
233
- "minimum",
234
- check.value,
235
- // This is in milliseconds
236
- check.message,
237
- refs
238
- );
239
- break;
240
- case "max":
241
- setResponseValueAndErrors(
242
- res,
243
- "maximum",
244
- check.value,
245
- // This is in milliseconds
246
- check.message,
247
- refs
248
- );
249
- break;
250
- }
251
- }
252
- return res;
253
- };
254
-
255
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/default.js
256
- function parseDefaultDef(_def, refs) {
257
- return {
258
- ...parseDef(_def.innerType._def, refs),
259
- default: _def.defaultValue()
260
- };
261
- }
262
-
263
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/effects.js
264
- function parseEffectsDef(_def, refs) {
265
- return refs.effectStrategy === "input" ? parseDef(_def.schema._def, refs) : {};
266
- }
267
-
268
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/enum.js
269
- function parseEnumDef(def) {
270
- return {
271
- type: "string",
272
- enum: Array.from(def.values)
273
- };
274
- }
275
-
276
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js
277
- var isJsonSchema7AllOfType = (type) => {
278
- if ("type" in type && type.type === "string")
279
- return false;
280
- return "allOf" in type;
281
- };
282
- function parseIntersectionDef(def, refs) {
283
- const allOf = [
284
- parseDef(def.left._def, {
285
- ...refs,
286
- currentPath: [...refs.currentPath, "allOf", "0"]
287
- }),
288
- parseDef(def.right._def, {
289
- ...refs,
290
- currentPath: [...refs.currentPath, "allOf", "1"]
291
- })
292
- ].filter((x) => !!x);
293
- let unevaluatedProperties = refs.target === "jsonSchema2019-09" ? { unevaluatedProperties: false } : void 0;
294
- const mergedAllOf = [];
295
- allOf.forEach((schema) => {
296
- if (isJsonSchema7AllOfType(schema)) {
297
- mergedAllOf.push(...schema.allOf);
298
- if (schema.unevaluatedProperties === void 0) {
299
- unevaluatedProperties = void 0;
300
- }
301
- } else {
302
- let nestedSchema = schema;
303
- if ("additionalProperties" in schema && schema.additionalProperties === false) {
304
- const { additionalProperties, ...rest } = schema;
305
- nestedSchema = rest;
306
- } else {
307
- unevaluatedProperties = void 0;
308
- }
309
- mergedAllOf.push(nestedSchema);
310
- }
311
- });
312
- return mergedAllOf.length ? {
313
- allOf: mergedAllOf,
314
- ...unevaluatedProperties
315
- } : void 0;
316
- }
317
-
318
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/literal.js
319
- function parseLiteralDef(def, refs) {
320
- const parsedType = typeof def.value;
321
- if (parsedType !== "bigint" && parsedType !== "number" && parsedType !== "boolean" && parsedType !== "string") {
322
- return {
323
- type: Array.isArray(def.value) ? "array" : "object"
324
- };
325
- }
326
- if (refs.target === "openApi3") {
327
- return {
328
- type: parsedType === "bigint" ? "integer" : parsedType,
329
- enum: [def.value]
330
- };
331
- }
332
- return {
333
- type: parsedType === "bigint" ? "integer" : parsedType,
334
- const: def.value
335
- };
336
- }
337
-
338
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/record.js
339
- var import_zod2 = require("zod");
340
-
341
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/string.js
342
- var emojiRegex = void 0;
343
- var zodPatterns = {
344
- /**
345
- * `c` was changed to `[cC]` to replicate /i flag
346
- */
347
- cuid: /^[cC][^\s-]{8,}$/,
348
- cuid2: /^[0-9a-z]+$/,
349
- ulid: /^[0-9A-HJKMNP-TV-Z]{26}$/,
350
- /**
351
- * `a-z` was added to replicate /i flag
352
- */
353
- email: /^(?!\.)(?!.*\.\.)([a-zA-Z0-9_'+\-\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\-]*\.)+[a-zA-Z]{2,}$/,
354
- /**
355
- * Constructed a valid Unicode RegExp
356
- *
357
- * Lazily instantiate since this type of regex isn't supported
358
- * in all envs (e.g. React Native).
359
- *
360
- * See:
361
- * https://github.com/colinhacks/zod/issues/2433
362
- * Fix in Zod:
363
- * https://github.com/colinhacks/zod/commit/9340fd51e48576a75adc919bff65dbc4a5d4c99b
364
- */
365
- emoji: () => {
366
- if (emojiRegex === void 0) {
367
- emojiRegex = RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$", "u");
368
- }
369
- return emojiRegex;
370
- },
371
- /**
372
- * Unused
373
- */
374
- uuid: /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/,
375
- /**
376
- * Unused
377
- */
378
- ipv4: /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,
379
- ipv4Cidr: /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,
380
- /**
381
- * Unused
382
- */
383
- ipv6: /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/,
384
- ipv6Cidr: /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,
385
- base64: /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,
386
- base64url: /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,
387
- nanoid: /^[a-zA-Z0-9_-]{21}$/,
388
- jwt: /^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/
389
- };
390
- function parseStringDef(def, refs) {
391
- const res = {
392
- type: "string"
393
- };
394
- if (def.checks) {
395
- for (const check of def.checks) {
396
- switch (check.kind) {
397
- case "min":
398
- setResponseValueAndErrors(res, "minLength", typeof res.minLength === "number" ? Math.max(res.minLength, check.value) : check.value, check.message, refs);
399
- break;
400
- case "max":
401
- setResponseValueAndErrors(res, "maxLength", typeof res.maxLength === "number" ? Math.min(res.maxLength, check.value) : check.value, check.message, refs);
402
- break;
403
- case "email":
404
- switch (refs.emailStrategy) {
405
- case "format:email":
406
- addFormat(res, "email", check.message, refs);
407
- break;
408
- case "format:idn-email":
409
- addFormat(res, "idn-email", check.message, refs);
410
- break;
411
- case "pattern:zod":
412
- addPattern(res, zodPatterns.email, check.message, refs);
413
- break;
414
- }
415
- break;
416
- case "url":
417
- addFormat(res, "uri", check.message, refs);
418
- break;
419
- case "uuid":
420
- addFormat(res, "uuid", check.message, refs);
421
- break;
422
- case "regex":
423
- addPattern(res, check.regex, check.message, refs);
424
- break;
425
- case "cuid":
426
- addPattern(res, zodPatterns.cuid, check.message, refs);
427
- break;
428
- case "cuid2":
429
- addPattern(res, zodPatterns.cuid2, check.message, refs);
430
- break;
431
- case "startsWith":
432
- addPattern(res, RegExp(`^${escapeLiteralCheckValue(check.value, refs)}`), check.message, refs);
433
- break;
434
- case "endsWith":
435
- addPattern(res, RegExp(`${escapeLiteralCheckValue(check.value, refs)}$`), check.message, refs);
436
- break;
437
- case "datetime":
438
- addFormat(res, "date-time", check.message, refs);
439
- break;
440
- case "date":
441
- addFormat(res, "date", check.message, refs);
442
- break;
443
- case "time":
444
- addFormat(res, "time", check.message, refs);
445
- break;
446
- case "duration":
447
- addFormat(res, "duration", check.message, refs);
448
- break;
449
- case "length":
450
- setResponseValueAndErrors(res, "minLength", typeof res.minLength === "number" ? Math.max(res.minLength, check.value) : check.value, check.message, refs);
451
- setResponseValueAndErrors(res, "maxLength", typeof res.maxLength === "number" ? Math.min(res.maxLength, check.value) : check.value, check.message, refs);
452
- break;
453
- case "includes": {
454
- addPattern(res, RegExp(escapeLiteralCheckValue(check.value, refs)), check.message, refs);
455
- break;
456
- }
457
- case "ip": {
458
- if (check.version !== "v6") {
459
- addFormat(res, "ipv4", check.message, refs);
460
- }
461
- if (check.version !== "v4") {
462
- addFormat(res, "ipv6", check.message, refs);
463
- }
464
- break;
465
- }
466
- case "base64url":
467
- addPattern(res, zodPatterns.base64url, check.message, refs);
468
- break;
469
- case "jwt":
470
- addPattern(res, zodPatterns.jwt, check.message, refs);
471
- break;
472
- case "cidr": {
473
- if (check.version !== "v6") {
474
- addPattern(res, zodPatterns.ipv4Cidr, check.message, refs);
475
- }
476
- if (check.version !== "v4") {
477
- addPattern(res, zodPatterns.ipv6Cidr, check.message, refs);
478
- }
479
- break;
480
- }
481
- case "emoji":
482
- addPattern(res, zodPatterns.emoji(), check.message, refs);
483
- break;
484
- case "ulid": {
485
- addPattern(res, zodPatterns.ulid, check.message, refs);
486
- break;
487
- }
488
- case "base64": {
489
- switch (refs.base64Strategy) {
490
- case "format:binary": {
491
- addFormat(res, "binary", check.message, refs);
492
- break;
493
- }
494
- case "contentEncoding:base64": {
495
- setResponseValueAndErrors(res, "contentEncoding", "base64", check.message, refs);
496
- break;
497
- }
498
- case "pattern:zod": {
499
- addPattern(res, zodPatterns.base64, check.message, refs);
500
- break;
501
- }
502
- }
503
- break;
504
- }
505
- case "nanoid": {
506
- addPattern(res, zodPatterns.nanoid, check.message, refs);
507
- }
508
- case "toLowerCase":
509
- case "toUpperCase":
510
- case "trim":
511
- break;
512
- default:
513
- /* @__PURE__ */ ((_) => {
514
- })(check);
515
- }
516
- }
517
- }
518
- return res;
519
- }
520
- function escapeLiteralCheckValue(literal, refs) {
521
- return refs.patternStrategy === "escape" ? escapeNonAlphaNumeric(literal) : literal;
522
- }
523
- var ALPHA_NUMERIC = new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");
524
- function escapeNonAlphaNumeric(source) {
525
- let result = "";
526
- for (let i = 0; i < source.length; i++) {
527
- if (!ALPHA_NUMERIC.has(source[i])) {
528
- result += "\\";
529
- }
530
- result += source[i];
531
- }
532
- return result;
533
- }
534
- function addFormat(schema, value, message, refs) {
535
- if (schema.format || schema.anyOf?.some((x) => x.format)) {
536
- if (!schema.anyOf) {
537
- schema.anyOf = [];
538
- }
539
- if (schema.format) {
540
- schema.anyOf.push({
541
- format: schema.format,
542
- ...schema.errorMessage && refs.errorMessages && {
543
- errorMessage: { format: schema.errorMessage.format }
544
- }
545
- });
546
- delete schema.format;
547
- if (schema.errorMessage) {
548
- delete schema.errorMessage.format;
549
- if (Object.keys(schema.errorMessage).length === 0) {
550
- delete schema.errorMessage;
551
- }
552
- }
553
- }
554
- schema.anyOf.push({
555
- format: value,
556
- ...message && refs.errorMessages && { errorMessage: { format: message } }
557
- });
558
- } else {
559
- setResponseValueAndErrors(schema, "format", value, message, refs);
560
- }
561
- }
562
- function addPattern(schema, regex, message, refs) {
563
- if (schema.pattern || schema.allOf?.some((x) => x.pattern)) {
564
- if (!schema.allOf) {
565
- schema.allOf = [];
566
- }
567
- if (schema.pattern) {
568
- schema.allOf.push({
569
- pattern: schema.pattern,
570
- ...schema.errorMessage && refs.errorMessages && {
571
- errorMessage: { pattern: schema.errorMessage.pattern }
572
- }
573
- });
574
- delete schema.pattern;
575
- if (schema.errorMessage) {
576
- delete schema.errorMessage.pattern;
577
- if (Object.keys(schema.errorMessage).length === 0) {
578
- delete schema.errorMessage;
579
- }
580
- }
581
- }
582
- schema.allOf.push({
583
- pattern: stringifyRegExpWithFlags(regex, refs),
584
- ...message && refs.errorMessages && { errorMessage: { pattern: message } }
585
- });
586
- } else {
587
- setResponseValueAndErrors(schema, "pattern", stringifyRegExpWithFlags(regex, refs), message, refs);
588
- }
589
- }
590
- function stringifyRegExpWithFlags(regex, refs) {
591
- if (!refs.applyRegexFlags || !regex.flags) {
592
- return regex.source;
593
- }
594
- const flags = {
595
- i: regex.flags.includes("i"),
596
- m: regex.flags.includes("m"),
597
- s: regex.flags.includes("s")
598
- // `.` matches newlines
599
- };
600
- const source = flags.i ? regex.source.toLowerCase() : regex.source;
601
- let pattern = "";
602
- let isEscaped = false;
603
- let inCharGroup = false;
604
- let inCharRange = false;
605
- for (let i = 0; i < source.length; i++) {
606
- if (isEscaped) {
607
- pattern += source[i];
608
- isEscaped = false;
609
- continue;
610
- }
611
- if (flags.i) {
612
- if (inCharGroup) {
613
- if (source[i].match(/[a-z]/)) {
614
- if (inCharRange) {
615
- pattern += source[i];
616
- pattern += `${source[i - 2]}-${source[i]}`.toUpperCase();
617
- inCharRange = false;
618
- } else if (source[i + 1] === "-" && source[i + 2]?.match(/[a-z]/)) {
619
- pattern += source[i];
620
- inCharRange = true;
621
- } else {
622
- pattern += `${source[i]}${source[i].toUpperCase()}`;
623
- }
624
- continue;
625
- }
626
- } else if (source[i].match(/[a-z]/)) {
627
- pattern += `[${source[i]}${source[i].toUpperCase()}]`;
628
- continue;
629
- }
630
- }
631
- if (flags.m) {
632
- if (source[i] === "^") {
633
- pattern += `(^|(?<=[\r
634
- ]))`;
635
- continue;
636
- } else if (source[i] === "$") {
637
- pattern += `($|(?=[\r
638
- ]))`;
639
- continue;
640
- }
641
- }
642
- if (flags.s && source[i] === ".") {
643
- pattern += inCharGroup ? `${source[i]}\r
644
- ` : `[${source[i]}\r
645
- ]`;
646
- continue;
647
- }
648
- pattern += source[i];
649
- if (source[i] === "\\") {
650
- isEscaped = true;
651
- } else if (inCharGroup && source[i] === "]") {
652
- inCharGroup = false;
653
- } else if (!inCharGroup && source[i] === "[") {
654
- inCharGroup = true;
655
- }
656
- }
657
- try {
658
- new RegExp(pattern);
659
- } catch {
660
- console.warn(`Could not convert regex pattern at ${refs.currentPath.join("/")} to a flag-independent form! Falling back to the flag-ignorant source`);
661
- return regex.source;
662
- }
663
- return pattern;
664
- }
665
-
666
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/record.js
667
- function parseRecordDef(def, refs) {
668
- if (refs.target === "openAi") {
669
- console.warn("Warning: OpenAI may not support records in schemas! Try an array of key-value pairs instead.");
670
- }
671
- if (refs.target === "openApi3" && def.keyType?._def.typeName === import_zod2.ZodFirstPartyTypeKind.ZodEnum) {
672
- return {
673
- type: "object",
674
- required: def.keyType._def.values,
675
- properties: def.keyType._def.values.reduce((acc, key) => ({
676
- ...acc,
677
- [key]: parseDef(def.valueType._def, {
678
- ...refs,
679
- currentPath: [...refs.currentPath, "properties", key]
680
- }) ?? {}
681
- }), {}),
682
- additionalProperties: refs.rejectedAdditionalProperties
683
- };
684
- }
685
- const schema = {
686
- type: "object",
687
- additionalProperties: parseDef(def.valueType._def, {
688
- ...refs,
689
- currentPath: [...refs.currentPath, "additionalProperties"]
690
- }) ?? refs.allowedAdditionalProperties
691
- };
692
- if (refs.target === "openApi3") {
693
- return schema;
694
- }
695
- if (def.keyType?._def.typeName === import_zod2.ZodFirstPartyTypeKind.ZodString && def.keyType._def.checks?.length) {
696
- const { type, ...keyType } = parseStringDef(def.keyType._def, refs);
697
- return {
698
- ...schema,
699
- propertyNames: keyType
700
- };
701
- } else if (def.keyType?._def.typeName === import_zod2.ZodFirstPartyTypeKind.ZodEnum) {
702
- return {
703
- ...schema,
704
- propertyNames: {
705
- enum: def.keyType._def.values
706
- }
707
- };
708
- } else if (def.keyType?._def.typeName === import_zod2.ZodFirstPartyTypeKind.ZodBranded && def.keyType._def.type._def.typeName === import_zod2.ZodFirstPartyTypeKind.ZodString && def.keyType._def.type._def.checks?.length) {
709
- const { type, ...keyType } = parseBrandedDef(def.keyType._def, refs);
710
- return {
711
- ...schema,
712
- propertyNames: keyType
713
- };
714
- }
715
- return schema;
716
- }
717
-
718
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/map.js
719
- function parseMapDef(def, refs) {
720
- if (refs.mapStrategy === "record") {
721
- return parseRecordDef(def, refs);
722
- }
723
- const keys = parseDef(def.keyType._def, {
724
- ...refs,
725
- currentPath: [...refs.currentPath, "items", "items", "0"]
726
- }) || {};
727
- const values = parseDef(def.valueType._def, {
728
- ...refs,
729
- currentPath: [...refs.currentPath, "items", "items", "1"]
730
- }) || {};
731
- return {
732
- type: "array",
733
- maxItems: 125,
734
- items: {
735
- type: "array",
736
- items: [keys, values],
737
- minItems: 2,
738
- maxItems: 2
739
- }
740
- };
741
- }
742
-
743
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js
744
- function parseNativeEnumDef(def) {
745
- const object = def.values;
746
- const actualKeys = Object.keys(def.values).filter((key) => {
747
- return typeof object[object[key]] !== "number";
748
- });
749
- const actualValues = actualKeys.map((key) => object[key]);
750
- const parsedTypes = Array.from(new Set(actualValues.map((values) => typeof values)));
751
- return {
752
- type: parsedTypes.length === 1 ? parsedTypes[0] === "string" ? "string" : "number" : ["string", "number"],
753
- enum: actualValues
754
- };
755
- }
756
-
757
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/never.js
758
- function parseNeverDef() {
759
- return {
760
- not: {}
761
- };
762
- }
763
-
764
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/null.js
765
- function parseNullDef(refs) {
766
- return refs.target === "openApi3" ? {
767
- enum: ["null"],
768
- nullable: true
769
- } : {
770
- type: "null"
771
- };
772
- }
773
-
774
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/union.js
775
- var primitiveMappings = {
776
- ZodString: "string",
777
- ZodNumber: "number",
778
- ZodBigInt: "integer",
779
- ZodBoolean: "boolean",
780
- ZodNull: "null"
781
- };
782
- function parseUnionDef(def, refs) {
783
- if (refs.target === "openApi3")
784
- return asAnyOf(def, refs);
785
- const options = def.options instanceof Map ? Array.from(def.options.values()) : def.options;
786
- if (options.every((x) => x._def.typeName in primitiveMappings && (!x._def.checks || !x._def.checks.length))) {
787
- const types = options.reduce((types2, x) => {
788
- const type = primitiveMappings[x._def.typeName];
789
- return type && !types2.includes(type) ? [...types2, type] : types2;
790
- }, []);
791
- return {
792
- type: types.length > 1 ? types : types[0]
793
- };
794
- } else if (options.every((x) => x._def.typeName === "ZodLiteral" && !x.description)) {
795
- const types = options.reduce((acc, x) => {
796
- const type = typeof x._def.value;
797
- switch (type) {
798
- case "string":
799
- case "number":
800
- case "boolean":
801
- return [...acc, type];
802
- case "bigint":
803
- return [...acc, "integer"];
804
- case "object":
805
- if (x._def.value === null)
806
- return [...acc, "null"];
807
- case "symbol":
808
- case "undefined":
809
- case "function":
810
- default:
811
- return acc;
812
- }
813
- }, []);
814
- if (types.length === options.length) {
815
- const uniqueTypes = types.filter((x, i, a) => a.indexOf(x) === i);
816
- return {
817
- type: uniqueTypes.length > 1 ? uniqueTypes : uniqueTypes[0],
818
- enum: options.reduce((acc, x) => {
819
- return acc.includes(x._def.value) ? acc : [...acc, x._def.value];
820
- }, [])
821
- };
822
- }
823
- } else if (options.every((x) => x._def.typeName === "ZodEnum")) {
824
- return {
825
- type: "string",
826
- enum: options.reduce((acc, x) => [
827
- ...acc,
828
- ...x._def.values.filter((x2) => !acc.includes(x2))
829
- ], [])
830
- };
831
- }
832
- return asAnyOf(def, refs);
833
- }
834
- var asAnyOf = (def, refs) => {
835
- const anyOf = (def.options instanceof Map ? Array.from(def.options.values()) : def.options).map((x, i) => parseDef(x._def, {
836
- ...refs,
837
- currentPath: [...refs.currentPath, "anyOf", `${i}`]
838
- })).filter((x) => !!x && (!refs.strictUnions || typeof x === "object" && Object.keys(x).length > 0));
839
- return anyOf.length ? { anyOf } : void 0;
840
- };
841
-
842
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js
843
- function parseNullableDef(def, refs) {
844
- if (["ZodString", "ZodNumber", "ZodBigInt", "ZodBoolean", "ZodNull"].includes(def.innerType._def.typeName) && (!def.innerType._def.checks || !def.innerType._def.checks.length)) {
845
- if (refs.target === "openApi3") {
846
- return {
847
- type: primitiveMappings[def.innerType._def.typeName],
848
- nullable: true
849
- };
850
- }
851
- return {
852
- type: [
853
- primitiveMappings[def.innerType._def.typeName],
854
- "null"
855
- ]
856
- };
857
- }
858
- if (refs.target === "openApi3") {
859
- const base2 = parseDef(def.innerType._def, {
860
- ...refs,
861
- currentPath: [...refs.currentPath]
862
- });
863
- if (base2 && "$ref" in base2)
864
- return { allOf: [base2], nullable: true };
865
- return base2 && { ...base2, nullable: true };
866
- }
867
- const base = parseDef(def.innerType._def, {
868
- ...refs,
869
- currentPath: [...refs.currentPath, "anyOf", "0"]
870
- });
871
- return base && { anyOf: [base, { type: "null" }] };
872
- }
873
-
874
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/number.js
875
- function parseNumberDef(def, refs) {
876
- const res = {
877
- type: "number"
878
- };
879
- if (!def.checks)
880
- return res;
881
- for (const check of def.checks) {
882
- switch (check.kind) {
883
- case "int":
884
- res.type = "integer";
885
- addErrorMessage(res, "type", check.message, refs);
886
- break;
887
- case "min":
888
- if (refs.target === "jsonSchema7") {
889
- if (check.inclusive) {
890
- setResponseValueAndErrors(res, "minimum", check.value, check.message, refs);
891
- } else {
892
- setResponseValueAndErrors(res, "exclusiveMinimum", check.value, check.message, refs);
893
- }
894
- } else {
895
- if (!check.inclusive) {
896
- res.exclusiveMinimum = true;
897
- }
898
- setResponseValueAndErrors(res, "minimum", check.value, check.message, refs);
899
- }
900
- break;
901
- case "max":
902
- if (refs.target === "jsonSchema7") {
903
- if (check.inclusive) {
904
- setResponseValueAndErrors(res, "maximum", check.value, check.message, refs);
905
- } else {
906
- setResponseValueAndErrors(res, "exclusiveMaximum", check.value, check.message, refs);
907
- }
908
- } else {
909
- if (!check.inclusive) {
910
- res.exclusiveMaximum = true;
911
- }
912
- setResponseValueAndErrors(res, "maximum", check.value, check.message, refs);
913
- }
914
- break;
915
- case "multipleOf":
916
- setResponseValueAndErrors(res, "multipleOf", check.value, check.message, refs);
917
- break;
918
- }
919
- }
920
- return res;
921
- }
922
-
923
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/object.js
924
- var import_zod3 = require("zod");
925
- function parseObjectDef(def, refs) {
926
- const forceOptionalIntoNullable = refs.target === "openAi";
927
- const result = {
928
- type: "object",
929
- properties: {}
930
- };
931
- const required = [];
932
- const shape = def.shape();
933
- for (const propName in shape) {
934
- let propDef = shape[propName];
935
- if (propDef === void 0 || propDef._def === void 0) {
936
- continue;
937
- }
938
- let propOptional = safeIsOptional(propDef);
939
- if (propOptional && forceOptionalIntoNullable) {
940
- if (propDef instanceof import_zod3.ZodOptional) {
941
- propDef = propDef._def.innerType;
942
- }
943
- if (!propDef.isNullable()) {
944
- propDef = propDef.nullable();
945
- }
946
- propOptional = false;
947
- }
948
- const parsedDef = parseDef(propDef._def, {
949
- ...refs,
950
- currentPath: [...refs.currentPath, "properties", propName],
951
- propertyPath: [...refs.currentPath, "properties", propName]
952
- });
953
- if (parsedDef === void 0) {
954
- continue;
955
- }
956
- result.properties[propName] = parsedDef;
957
- if (!propOptional) {
958
- required.push(propName);
959
- }
960
- }
961
- if (required.length) {
962
- result.required = required;
963
- }
964
- const additionalProperties = decideAdditionalProperties(def, refs);
965
- if (additionalProperties !== void 0) {
966
- result.additionalProperties = additionalProperties;
967
- }
968
- return result;
969
- }
970
- function decideAdditionalProperties(def, refs) {
971
- if (def.catchall._def.typeName !== "ZodNever") {
972
- return parseDef(def.catchall._def, {
973
- ...refs,
974
- currentPath: [...refs.currentPath, "additionalProperties"]
975
- });
976
- }
977
- switch (def.unknownKeys) {
978
- case "passthrough":
979
- return refs.allowedAdditionalProperties;
980
- case "strict":
981
- return refs.rejectedAdditionalProperties;
982
- case "strip":
983
- return refs.removeAdditionalStrategy === "strict" ? refs.allowedAdditionalProperties : refs.rejectedAdditionalProperties;
984
- }
985
- }
986
- function safeIsOptional(schema) {
987
- try {
988
- return schema.isOptional();
989
- } catch {
990
- return true;
991
- }
992
- }
993
-
994
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/optional.js
995
- var parseOptionalDef = (def, refs) => {
996
- if (refs.currentPath.toString() === refs.propertyPath?.toString()) {
997
- return parseDef(def.innerType._def, refs);
998
- }
999
- const innerSchema = parseDef(def.innerType._def, {
1000
- ...refs,
1001
- currentPath: [...refs.currentPath, "anyOf", "1"]
1002
- });
1003
- return innerSchema ? {
1004
- anyOf: [
1005
- {
1006
- not: {}
1007
- },
1008
- innerSchema
1009
- ]
1010
- } : {};
1011
- };
1012
-
1013
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js
1014
- var parsePipelineDef = (def, refs) => {
1015
- if (refs.pipeStrategy === "input") {
1016
- return parseDef(def.in._def, refs);
1017
- } else if (refs.pipeStrategy === "output") {
1018
- return parseDef(def.out._def, refs);
1019
- }
1020
- const a = parseDef(def.in._def, {
1021
- ...refs,
1022
- currentPath: [...refs.currentPath, "allOf", "0"]
1023
- });
1024
- const b = parseDef(def.out._def, {
1025
- ...refs,
1026
- currentPath: [...refs.currentPath, "allOf", a ? "1" : "0"]
1027
- });
1028
- return {
1029
- allOf: [a, b].filter((x) => x !== void 0)
1030
- };
1031
- };
1032
-
1033
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/promise.js
1034
- function parsePromiseDef(def, refs) {
1035
- return parseDef(def.type._def, refs);
1036
- }
1037
-
1038
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/set.js
1039
- function parseSetDef(def, refs) {
1040
- const items = parseDef(def.valueType._def, {
1041
- ...refs,
1042
- currentPath: [...refs.currentPath, "items"]
1043
- });
1044
- const schema = {
1045
- type: "array",
1046
- uniqueItems: true,
1047
- items
1048
- };
1049
- if (def.minSize) {
1050
- setResponseValueAndErrors(schema, "minItems", def.minSize.value, def.minSize.message, refs);
1051
- }
1052
- if (def.maxSize) {
1053
- setResponseValueAndErrors(schema, "maxItems", def.maxSize.value, def.maxSize.message, refs);
1054
- }
1055
- return schema;
1056
- }
1057
-
1058
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js
1059
- function parseTupleDef(def, refs) {
1060
- if (def.rest) {
1061
- return {
1062
- type: "array",
1063
- minItems: def.items.length,
1064
- items: def.items.map((x, i) => parseDef(x._def, {
1065
- ...refs,
1066
- currentPath: [...refs.currentPath, "items", `${i}`]
1067
- })).reduce((acc, x) => x === void 0 ? acc : [...acc, x], []),
1068
- additionalItems: parseDef(def.rest._def, {
1069
- ...refs,
1070
- currentPath: [...refs.currentPath, "additionalItems"]
1071
- })
1072
- };
1073
- } else {
1074
- return {
1075
- type: "array",
1076
- minItems: def.items.length,
1077
- maxItems: def.items.length,
1078
- items: def.items.map((x, i) => parseDef(x._def, {
1079
- ...refs,
1080
- currentPath: [...refs.currentPath, "items", `${i}`]
1081
- })).reduce((acc, x) => x === void 0 ? acc : [...acc, x], [])
1082
- };
1083
- }
1084
- }
1085
-
1086
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js
1087
- function parseUndefinedDef() {
1088
- return {
1089
- not: {}
1090
- };
1091
- }
1092
-
1093
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js
1094
- function parseUnknownDef() {
1095
- return {};
1096
- }
1097
-
1098
- // ../../node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js
1099
- var parseReadonlyDef = (def, refs) => {
1100
- return parseDef(def.innerType._def, refs);
1101
- };
1102
-
1103
- // ../../node_modules/zod-to-json-schema/dist/esm/selectParser.js
1104
- var selectParser = (def, typeName, refs) => {
1105
- switch (typeName) {
1106
- case import_zod4.ZodFirstPartyTypeKind.ZodString:
1107
- return parseStringDef(def, refs);
1108
- case import_zod4.ZodFirstPartyTypeKind.ZodNumber:
1109
- return parseNumberDef(def, refs);
1110
- case import_zod4.ZodFirstPartyTypeKind.ZodObject:
1111
- return parseObjectDef(def, refs);
1112
- case import_zod4.ZodFirstPartyTypeKind.ZodBigInt:
1113
- return parseBigintDef(def, refs);
1114
- case import_zod4.ZodFirstPartyTypeKind.ZodBoolean:
1115
- return parseBooleanDef();
1116
- case import_zod4.ZodFirstPartyTypeKind.ZodDate:
1117
- return parseDateDef(def, refs);
1118
- case import_zod4.ZodFirstPartyTypeKind.ZodUndefined:
1119
- return parseUndefinedDef();
1120
- case import_zod4.ZodFirstPartyTypeKind.ZodNull:
1121
- return parseNullDef(refs);
1122
- case import_zod4.ZodFirstPartyTypeKind.ZodArray:
1123
- return parseArrayDef(def, refs);
1124
- case import_zod4.ZodFirstPartyTypeKind.ZodUnion:
1125
- case import_zod4.ZodFirstPartyTypeKind.ZodDiscriminatedUnion:
1126
- return parseUnionDef(def, refs);
1127
- case import_zod4.ZodFirstPartyTypeKind.ZodIntersection:
1128
- return parseIntersectionDef(def, refs);
1129
- case import_zod4.ZodFirstPartyTypeKind.ZodTuple:
1130
- return parseTupleDef(def, refs);
1131
- case import_zod4.ZodFirstPartyTypeKind.ZodRecord:
1132
- return parseRecordDef(def, refs);
1133
- case import_zod4.ZodFirstPartyTypeKind.ZodLiteral:
1134
- return parseLiteralDef(def, refs);
1135
- case import_zod4.ZodFirstPartyTypeKind.ZodEnum:
1136
- return parseEnumDef(def);
1137
- case import_zod4.ZodFirstPartyTypeKind.ZodNativeEnum:
1138
- return parseNativeEnumDef(def);
1139
- case import_zod4.ZodFirstPartyTypeKind.ZodNullable:
1140
- return parseNullableDef(def, refs);
1141
- case import_zod4.ZodFirstPartyTypeKind.ZodOptional:
1142
- return parseOptionalDef(def, refs);
1143
- case import_zod4.ZodFirstPartyTypeKind.ZodMap:
1144
- return parseMapDef(def, refs);
1145
- case import_zod4.ZodFirstPartyTypeKind.ZodSet:
1146
- return parseSetDef(def, refs);
1147
- case import_zod4.ZodFirstPartyTypeKind.ZodLazy:
1148
- return () => def.getter()._def;
1149
- case import_zod4.ZodFirstPartyTypeKind.ZodPromise:
1150
- return parsePromiseDef(def, refs);
1151
- case import_zod4.ZodFirstPartyTypeKind.ZodNaN:
1152
- case import_zod4.ZodFirstPartyTypeKind.ZodNever:
1153
- return parseNeverDef();
1154
- case import_zod4.ZodFirstPartyTypeKind.ZodEffects:
1155
- return parseEffectsDef(def, refs);
1156
- case import_zod4.ZodFirstPartyTypeKind.ZodAny:
1157
- return parseAnyDef();
1158
- case import_zod4.ZodFirstPartyTypeKind.ZodUnknown:
1159
- return parseUnknownDef();
1160
- case import_zod4.ZodFirstPartyTypeKind.ZodDefault:
1161
- return parseDefaultDef(def, refs);
1162
- case import_zod4.ZodFirstPartyTypeKind.ZodBranded:
1163
- return parseBrandedDef(def, refs);
1164
- case import_zod4.ZodFirstPartyTypeKind.ZodReadonly:
1165
- return parseReadonlyDef(def, refs);
1166
- case import_zod4.ZodFirstPartyTypeKind.ZodCatch:
1167
- return parseCatchDef(def, refs);
1168
- case import_zod4.ZodFirstPartyTypeKind.ZodPipeline:
1169
- return parsePipelineDef(def, refs);
1170
- case import_zod4.ZodFirstPartyTypeKind.ZodFunction:
1171
- case import_zod4.ZodFirstPartyTypeKind.ZodVoid:
1172
- case import_zod4.ZodFirstPartyTypeKind.ZodSymbol:
1173
- return void 0;
1174
- default:
1175
- return /* @__PURE__ */ ((_) => void 0)(typeName);
1176
- }
1177
- };
1178
-
1179
- // ../../node_modules/zod-to-json-schema/dist/esm/parseDef.js
1180
- function parseDef(def, refs, forceResolution = false) {
1181
- const seenItem = refs.seen.get(def);
1182
- if (refs.override) {
1183
- const overrideResult = refs.override?.(def, refs, seenItem, forceResolution);
1184
- if (overrideResult !== ignoreOverride) {
1185
- return overrideResult;
1186
- }
1187
- }
1188
- if (seenItem && !forceResolution) {
1189
- const seenSchema = get$ref(seenItem, refs);
1190
- if (seenSchema !== void 0) {
1191
- return seenSchema;
1192
- }
1193
- }
1194
- const newItem = { def, path: refs.currentPath, jsonSchema: void 0 };
1195
- refs.seen.set(def, newItem);
1196
- const jsonSchemaOrGetter = selectParser(def, def.typeName, refs);
1197
- const jsonSchema = typeof jsonSchemaOrGetter === "function" ? parseDef(jsonSchemaOrGetter(), refs) : jsonSchemaOrGetter;
1198
- if (jsonSchema) {
1199
- addMeta(def, refs, jsonSchema);
1200
- }
1201
- if (refs.postProcess) {
1202
- const postProcessResult = refs.postProcess(jsonSchema, def, refs);
1203
- newItem.jsonSchema = jsonSchema;
1204
- return postProcessResult;
1205
- }
1206
- newItem.jsonSchema = jsonSchema;
1207
- return jsonSchema;
1208
- }
1209
- var get$ref = (item, refs) => {
1210
- switch (refs.$refStrategy) {
1211
- case "root":
1212
- return { $ref: item.path.join("/") };
1213
- case "relative":
1214
- return { $ref: getRelativePath(refs.currentPath, item.path) };
1215
- case "none":
1216
- case "seen": {
1217
- if (item.path.length < refs.currentPath.length && item.path.every((value, index) => refs.currentPath[index] === value)) {
1218
- console.warn(`Recursive reference detected at ${refs.currentPath.join("/")}! Defaulting to any`);
1219
- return {};
1220
- }
1221
- return refs.$refStrategy === "seen" ? {} : void 0;
1222
- }
1223
- }
1224
- };
1225
- var getRelativePath = (pathA, pathB) => {
1226
- let i = 0;
1227
- for (; i < pathA.length && i < pathB.length; i++) {
1228
- if (pathA[i] !== pathB[i])
1229
- break;
1230
- }
1231
- return [(pathA.length - i).toString(), ...pathB.slice(i)].join("/");
1232
- };
1233
- var addMeta = (def, refs, jsonSchema) => {
1234
- if (def.description) {
1235
- jsonSchema.description = def.description;
1236
- if (refs.markdownDescription) {
1237
- jsonSchema.markdownDescription = def.description;
1238
- }
1239
- }
1240
- return jsonSchema;
1241
- };
1242
-
1243
- // ../../node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js
1244
- var zodToJsonSchema = (schema, options) => {
1245
- const refs = getRefs(options);
1246
- const definitions = typeof options === "object" && options.definitions ? Object.entries(options.definitions).reduce((acc, [name2, schema2]) => ({
1247
- ...acc,
1248
- [name2]: parseDef(schema2._def, {
1249
- ...refs,
1250
- currentPath: [...refs.basePath, refs.definitionPath, name2]
1251
- }, true) ?? {}
1252
- }), {}) : void 0;
1253
- const name = typeof options === "string" ? options : options?.nameStrategy === "title" ? void 0 : options?.name;
1254
- const main = parseDef(schema._def, name === void 0 ? refs : {
1255
- ...refs,
1256
- currentPath: [...refs.basePath, refs.definitionPath, name]
1257
- }, false) ?? {};
1258
- const title = typeof options === "object" && options.name !== void 0 && options.nameStrategy === "title" ? options.name : void 0;
1259
- if (title !== void 0) {
1260
- main.title = title;
1261
- }
1262
- const combined = name === void 0 ? definitions ? {
1263
- ...main,
1264
- [refs.definitionPath]: definitions
1265
- } : main : {
1266
- $ref: [
1267
- ...refs.$refStrategy === "relative" ? [] : refs.basePath,
1268
- refs.definitionPath,
1269
- name
1270
- ].join("/"),
1271
- [refs.definitionPath]: {
1272
- ...definitions,
1273
- [name]: main
1274
- }
1275
- };
1276
- if (refs.target === "jsonSchema7") {
1277
- combined.$schema = "http://json-schema.org/draft-07/schema#";
1278
- } else if (refs.target === "jsonSchema2019-09" || refs.target === "openAi") {
1279
- combined.$schema = "https://json-schema.org/draft/2019-09/schema#";
1280
- }
1281
- if (refs.target === "openAi" && ("anyOf" in combined || "oneOf" in combined || "allOf" in combined || "type" in combined && Array.isArray(combined.type))) {
1282
- console.warn("Warning: OpenAI may not support schemas with unions as roots! Try wrapping it in an object property.");
1283
- }
1284
- return combined;
1285
- };
1286
-
1287
- // src/MCPLocal.ts
1288
28
  var import_fixparser = require("fixparser");
29
+ var import_zod = require("zod");
1289
30
  var MCPLocal = class {
1290
- logger;
1291
31
  parser;
1292
32
  server = new import_server.Server(
1293
33
  {
@@ -1297,13 +37,166 @@ var MCPLocal = class {
1297
37
  {
1298
38
  capabilities: {
1299
39
  tools: {
1300
- listChanged: true
1301
- },
1302
- prompts: {
1303
- listChanged: true
1304
- },
1305
- resources: {
1306
- listChanged: true
40
+ parse: {
41
+ description: "Parses a FIX message and describes it in plain language",
42
+ parameters: {
43
+ type: "object",
44
+ properties: {
45
+ fixString: { type: "string" }
46
+ },
47
+ required: ["fixString"]
48
+ }
49
+ },
50
+ parseToJSON: {
51
+ description: "Parses a FIX message into JSON",
52
+ parameters: {
53
+ type: "object",
54
+ properties: {
55
+ fixString: { type: "string" }
56
+ },
57
+ required: ["fixString"]
58
+ }
59
+ },
60
+ verifyOrder: {
61
+ description: "Verifies order parameters before execution",
62
+ parameters: {
63
+ type: "object",
64
+ properties: {
65
+ clOrdID: { type: "string" },
66
+ handlInst: { type: "string", enum: ["1", "2", "3"] },
67
+ quantity: { type: "string" },
68
+ price: { type: "string" },
69
+ ordType: {
70
+ type: "string",
71
+ enum: [
72
+ "1",
73
+ "2",
74
+ "3",
75
+ "4",
76
+ "5",
77
+ "6",
78
+ "7",
79
+ "8",
80
+ "9",
81
+ "A",
82
+ "B",
83
+ "C",
84
+ "D",
85
+ "E",
86
+ "F",
87
+ "G",
88
+ "H",
89
+ "I",
90
+ "J",
91
+ "K",
92
+ "L",
93
+ "M",
94
+ "P",
95
+ "Q",
96
+ "R",
97
+ "S"
98
+ ]
99
+ },
100
+ side: {
101
+ type: "string",
102
+ enum: [
103
+ "1",
104
+ "2",
105
+ "3",
106
+ "4",
107
+ "5",
108
+ "6",
109
+ "7",
110
+ "8",
111
+ "9",
112
+ "A",
113
+ "B",
114
+ "C",
115
+ "D",
116
+ "E",
117
+ "F",
118
+ "G",
119
+ "H"
120
+ ]
121
+ },
122
+ symbol: { type: "string" },
123
+ timeInForce: {
124
+ type: "string",
125
+ enum: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"]
126
+ }
127
+ },
128
+ required: [
129
+ "clOrdID",
130
+ "handlInst",
131
+ "quantity",
132
+ "price",
133
+ "ordType",
134
+ "side",
135
+ "symbol",
136
+ "timeInForce"
137
+ ]
138
+ }
139
+ },
140
+ executeOrder: {
141
+ description: "Executes a verified order",
142
+ parameters: {
143
+ type: "object",
144
+ properties: {
145
+ clOrdID: { type: "string" },
146
+ handlInst: { type: "string", enum: ["1", "2", "3"] },
147
+ quantity: { type: "string" },
148
+ price: { type: "string" },
149
+ ordType: { type: "string" },
150
+ side: { type: "string" },
151
+ symbol: { type: "string" },
152
+ timeInForce: { type: "string" }
153
+ },
154
+ required: [
155
+ "clOrdID",
156
+ "handlInst",
157
+ "quantity",
158
+ "price",
159
+ "ordType",
160
+ "side",
161
+ "symbol",
162
+ "timeInForce"
163
+ ]
164
+ }
165
+ },
166
+ marketDataRequest: {
167
+ description: "Requests market data for specified symbols",
168
+ parameters: {
169
+ type: "object",
170
+ properties: {
171
+ mdUpdateType: { type: "string", enum: ["0", "1"] },
172
+ symbols: { type: "array", items: { type: "string" } },
173
+ mdReqID: { type: "string" },
174
+ subscriptionRequestType: { type: "string", enum: ["0", "1", "2"] },
175
+ mdEntryTypes: { type: "array", items: { type: "string" } }
176
+ },
177
+ required: ["mdUpdateType", "symbols", "mdReqID", "subscriptionRequestType", "mdEntryTypes"]
178
+ }
179
+ },
180
+ getStockGraph: {
181
+ description: "Generates a price chart for a given symbol",
182
+ parameters: {
183
+ type: "object",
184
+ properties: {
185
+ symbol: { type: "string" }
186
+ },
187
+ required: ["symbol"]
188
+ }
189
+ },
190
+ getStockPriceHistory: {
191
+ description: "Returns price history for a given symbol",
192
+ parameters: {
193
+ type: "object",
194
+ properties: {
195
+ symbol: { type: "string" }
196
+ },
197
+ required: ["symbol"]
198
+ }
199
+ }
1307
200
  }
1308
201
  }
1309
202
  }
@@ -1311,33 +204,77 @@ var MCPLocal = class {
1311
204
  transport = new import_stdio.StdioServerTransport();
1312
205
  onReady = void 0;
1313
206
  pendingRequests = /* @__PURE__ */ new Map();
207
+ verifiedOrders = /* @__PURE__ */ new Map();
208
+ // Store market data prices with timestamps
209
+ marketDataPrices = /* @__PURE__ */ new Map();
210
+ MAX_PRICE_HISTORY = 1e5;
211
+ // Maximum number of price points to store per symbol
1314
212
  constructor({ logger, onReady }) {
1315
- if (logger) this.logger = logger;
1316
213
  if (onReady) this.onReady = onReady;
1317
214
  }
1318
215
  async register(parser) {
1319
216
  this.parser = parser;
1320
217
  this.parser.addOnMessageCallback((message) => {
1321
- this.logger?.log({
218
+ this.parser?.logger.log({
1322
219
  level: "info",
1323
- message: `FIXParser (MCP): (${parser.protocol?.toUpperCase()}): << received ${message.description}`
220
+ message: `MCP Server received message: ${message.messageType}: ${message.description}`
1324
221
  });
1325
222
  const msgType = message.messageType;
1326
- if (msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh || msgType === import_fixparser.Messages.ExecutionReport) {
1327
- const idField = msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh ? message.getField(import_fixparser.Fields.MDReqID) : message.getField(import_fixparser.Fields.ClOrdID);
1328
- if (idField) {
1329
- const id = idField.value;
1330
- if (typeof id === "string" || typeof id === "number") {
1331
- const callback = this.pendingRequests.get(String(id));
1332
- if (callback) {
1333
- callback(message);
1334
- this.pendingRequests.delete(String(id));
223
+ if (msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh || msgType === import_fixparser.Messages.ExecutionReport || msgType === import_fixparser.Messages.Reject || msgType === import_fixparser.Messages.MarketDataIncrementalRefresh) {
224
+ this.parser?.logger.log({
225
+ level: "info",
226
+ message: `MCP Server handling message type: ${msgType}`
227
+ });
228
+ let id;
229
+ if (msgType === import_fixparser.Messages.MarketDataIncrementalRefresh || msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh) {
230
+ const symbol = message.getField(import_fixparser.Fields.Symbol);
231
+ const price = message.getField(import_fixparser.Fields.MDEntryPx);
232
+ const timestamp = message.getField(import_fixparser.Fields.MDEntryTime)?.value || Date.now();
233
+ if (symbol?.value && price?.value) {
234
+ const symbolStr = String(symbol.value);
235
+ const priceNum = Number(price.value);
236
+ const priceHistory = this.marketDataPrices.get(symbolStr) || [];
237
+ priceHistory.push({
238
+ timestamp: Number(timestamp),
239
+ price: priceNum
240
+ });
241
+ if (priceHistory.length > this.MAX_PRICE_HISTORY) {
242
+ priceHistory.shift();
1335
243
  }
244
+ this.marketDataPrices.set(symbolStr, priceHistory);
245
+ this.parser?.logger.log({
246
+ level: "info",
247
+ message: `MCP Server added ${symbol}: ${priceNum}`
248
+ });
249
+ this.server.notification({
250
+ method: "priceUpdate",
251
+ params: {
252
+ symbol: symbolStr,
253
+ price: priceNum,
254
+ timestamp: Number(timestamp)
255
+ }
256
+ });
257
+ }
258
+ }
259
+ if (msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh) {
260
+ const mdReqID = message.getField(import_fixparser.Fields.MDReqID);
261
+ if (mdReqID) id = String(mdReqID.value);
262
+ } else if (msgType === import_fixparser.Messages.ExecutionReport) {
263
+ const clOrdID = message.getField(import_fixparser.Fields.ClOrdID);
264
+ if (clOrdID) id = String(clOrdID.value);
265
+ } else if (msgType === import_fixparser.Messages.Reject) {
266
+ const refSeqNum = message.getField(import_fixparser.Fields.RefSeqNum);
267
+ if (refSeqNum) id = String(refSeqNum.value);
268
+ }
269
+ if (id) {
270
+ const callback = this.pendingRequests.get(id);
271
+ if (callback) {
272
+ callback(message);
273
+ this.pendingRequests.delete(id);
1336
274
  }
1337
275
  }
1338
276
  }
1339
277
  });
1340
- this.logger = parser.logger;
1341
278
  this.addWorkflows();
1342
279
  await this.server.connect(this.transport);
1343
280
  if (this.onReady) {
@@ -1346,637 +283,691 @@ var MCPLocal = class {
1346
283
  }
1347
284
  addWorkflows() {
1348
285
  if (!this.parser) {
1349
- this.logger?.log({
1350
- level: "error",
1351
- message: "FIXParser (MCP): -- FIXParser instance not initialized. Ignoring setup of workflows..."
1352
- });
1353
286
  return;
1354
287
  }
1355
288
  if (!this.server) {
1356
- this.logger?.log({
1357
- level: "error",
1358
- message: "FIXParser (MCP): -- MCP Server not initialized. Ignoring setup of workflows..."
1359
- });
1360
289
  return;
1361
290
  }
1362
- this.server.setRequestHandler(import_types.ListResourcesRequestSchema, async () => {
1363
- return {
1364
- resources: []
1365
- };
1366
- });
1367
- this.server.setRequestHandler(import_types.ListToolsRequestSchema, async () => {
1368
- return {
1369
- tools: [
1370
- {
1371
- name: "parse",
1372
- description: "Parses a FIX message and describes it in plain language",
1373
- inputSchema: zodToJsonSchema(
1374
- import_zod5.z.object({
1375
- fixString: import_zod5.z.string().describe("FIX message string to parse")
1376
- }),
1377
- { name: "ParseInput" }
1378
- )
1379
- },
1380
- {
1381
- name: "parseToJSON",
1382
- description: "Parses a FIX message into JSON",
1383
- inputSchema: zodToJsonSchema(
1384
- import_zod5.z.object({
1385
- fixString: import_zod5.z.string().describe("FIX message string to parse")
1386
- }),
1387
- { name: "ParseToJSONInput" }
1388
- )
1389
- },
1390
- {
1391
- name: "newOrderSingle",
1392
- description: "Creates and sends a New Order Single",
1393
- inputSchema: zodToJsonSchema(
1394
- import_zod5.z.object({
1395
- clOrdID: import_zod5.z.string().describe("Client Order ID"),
1396
- handlInst: import_zod5.z.enum(["1", "2", "3"]).default(import_fixparser.HandlInst.AutomatedExecutionNoIntervention).optional().describe("Handling instruction"),
1397
- quantity: import_zod5.z.number().describe("Order quantity"),
1398
- price: import_zod5.z.number().describe("Order price"),
1399
- ordType: import_zod5.z.enum([
1400
- "1",
1401
- "2",
1402
- "3",
1403
- "4",
1404
- "5",
1405
- "6",
1406
- "7",
1407
- "8",
1408
- "9",
1409
- "A",
1410
- "B",
1411
- "C",
1412
- "D",
1413
- "E",
1414
- "F",
1415
- "G",
1416
- "H",
1417
- "I",
1418
- "J",
1419
- "K",
1420
- "L",
1421
- "M",
1422
- "P",
1423
- "Q",
1424
- "R",
1425
- "S"
1426
- ]).default("1").optional().describe("Order type"),
1427
- side: import_zod5.z.enum([
1428
- "1",
1429
- "2",
1430
- "3",
1431
- "4",
1432
- "5",
1433
- "6",
1434
- "7",
1435
- "8",
1436
- "9",
1437
- "A",
1438
- "B",
1439
- "C",
1440
- "D",
1441
- "E",
1442
- "F",
1443
- "G",
1444
- "H"
1445
- ]).describe("Order side (1=Buy, 2=Sell)"),
1446
- symbol: import_zod5.z.string().describe("Trading symbol"),
1447
- timeInForce: import_zod5.z.enum(["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"]).default(import_fixparser.TimeInForce.Day).optional().describe("Time in force")
1448
- }),
1449
- { name: "NewOrderSingleInput" }
1450
- )
1451
- },
1452
- {
1453
- name: "marketDataRequest",
1454
- description: "Sends a request for Market Data with the given symbol",
1455
- inputSchema: zodToJsonSchema(
1456
- import_zod5.z.object({
1457
- mdUpdateType: import_zod5.z.enum(["0", "1"]).default("0").optional().describe("Market data update type"),
1458
- symbol: import_zod5.z.string().describe("Trading symbol"),
1459
- mdReqID: import_zod5.z.string().describe("Market data request ID"),
1460
- subscriptionRequestType: import_zod5.z.enum(["0", "1", "2"]).default(import_fixparser.SubscriptionRequestType.SnapshotAndUpdates).optional().describe("Subscription request type"),
1461
- mdEntryType: import_zod5.z.enum([
1462
- "0",
1463
- "1",
1464
- "2",
1465
- "3",
1466
- "4",
1467
- "5",
1468
- "6",
1469
- "7",
1470
- "8",
1471
- "9",
1472
- "A",
1473
- "B",
1474
- "C",
1475
- "D",
1476
- "E",
1477
- "F",
1478
- "G",
1479
- "H",
1480
- "J",
1481
- "K",
1482
- "L",
1483
- "M",
1484
- "N",
1485
- "O",
1486
- "P",
1487
- "Q",
1488
- "S",
1489
- "R",
1490
- "T",
1491
- "U",
1492
- "V",
1493
- "W",
1494
- "X",
1495
- "Y",
1496
- "Z",
1497
- "a",
1498
- "b",
1499
- "c",
1500
- "d",
1501
- "e",
1502
- "g",
1503
- "h",
1504
- "i",
1505
- "t"
1506
- ]).default(import_fixparser.MDEntryType.Bid).optional().describe("Market data entry type")
1507
- }),
1508
- { name: "MarketDataRequestInput" }
1509
- )
1510
- }
1511
- ]
1512
- };
1513
- });
1514
- this.server.setRequestHandler(import_types.CallToolRequestSchema, async (request) => {
1515
- const { name, arguments: args } = request.params;
1516
- switch (name) {
1517
- case "parse": {
1518
- const { fixString } = import_zod5.z.object({
1519
- fixString: import_zod5.z.string().describe("FIX message string to parse")
1520
- }).parse(args || {});
1521
- try {
1522
- const parsedMessage = this.parser?.parse(fixString);
1523
- if (!parsedMessage || parsedMessage.length === 0) {
291
+ this.server.setRequestHandler(
292
+ import_zod.z.object({ method: import_zod.z.literal("tools/list") }),
293
+ async (request, extra) => {
294
+ return {
295
+ tools: [
296
+ {
297
+ name: "parse",
298
+ description: "Parses a FIX message and describes it in plain language",
299
+ inputSchema: {
300
+ type: "object",
301
+ properties: {
302
+ fixString: { type: "string" }
303
+ },
304
+ required: ["fixString"]
305
+ }
306
+ },
307
+ {
308
+ name: "parseToJSON",
309
+ description: "Parses a FIX message into JSON",
310
+ inputSchema: {
311
+ type: "object",
312
+ properties: {
313
+ fixString: { type: "string" }
314
+ },
315
+ required: ["fixString"]
316
+ }
317
+ },
318
+ {
319
+ name: "verifyOrder",
320
+ description: "Verifies order parameters before execution",
321
+ inputSchema: {
322
+ type: "object",
323
+ properties: {
324
+ clOrdID: { type: "string" },
325
+ handlInst: { type: "string", enum: ["1", "2", "3"] },
326
+ quantity: { type: "string" },
327
+ price: { type: "string" },
328
+ ordType: {
329
+ type: "string",
330
+ enum: [
331
+ "1",
332
+ "2",
333
+ "3",
334
+ "4",
335
+ "5",
336
+ "6",
337
+ "7",
338
+ "8",
339
+ "9",
340
+ "A",
341
+ "B",
342
+ "C",
343
+ "D",
344
+ "E",
345
+ "F",
346
+ "G",
347
+ "H",
348
+ "I",
349
+ "J",
350
+ "K",
351
+ "L",
352
+ "M",
353
+ "P",
354
+ "Q",
355
+ "R",
356
+ "S"
357
+ ]
358
+ },
359
+ side: {
360
+ type: "string",
361
+ enum: [
362
+ "1",
363
+ "2",
364
+ "3",
365
+ "4",
366
+ "5",
367
+ "6",
368
+ "7",
369
+ "8",
370
+ "9",
371
+ "A",
372
+ "B",
373
+ "C",
374
+ "D",
375
+ "E",
376
+ "F",
377
+ "G",
378
+ "H"
379
+ ]
380
+ },
381
+ symbol: { type: "string" },
382
+ timeInForce: {
383
+ type: "string",
384
+ enum: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"]
385
+ }
386
+ },
387
+ required: [
388
+ "clOrdID",
389
+ "handlInst",
390
+ "quantity",
391
+ "price",
392
+ "ordType",
393
+ "side",
394
+ "symbol",
395
+ "timeInForce"
396
+ ]
397
+ }
398
+ },
399
+ {
400
+ name: "executeOrder",
401
+ description: "Executes a verified order",
402
+ inputSchema: {
403
+ type: "object",
404
+ properties: {
405
+ clOrdID: { type: "string" },
406
+ handlInst: { type: "string", enum: ["1", "2", "3"] },
407
+ quantity: { type: "string" },
408
+ price: { type: "string" },
409
+ ordType: { type: "string" },
410
+ side: { type: "string" },
411
+ symbol: { type: "string" },
412
+ timeInForce: { type: "string" }
413
+ },
414
+ required: [
415
+ "clOrdID",
416
+ "handlInst",
417
+ "quantity",
418
+ "price",
419
+ "ordType",
420
+ "side",
421
+ "symbol",
422
+ "timeInForce"
423
+ ]
424
+ }
425
+ },
426
+ {
427
+ name: "marketDataRequest",
428
+ description: "Requests market data for specified symbols",
429
+ inputSchema: {
430
+ type: "object",
431
+ properties: {
432
+ mdUpdateType: { type: "string", enum: ["0", "1"] },
433
+ symbols: { type: "array", items: { type: "string" } },
434
+ mdReqID: { type: "string" },
435
+ subscriptionRequestType: { type: "string", enum: ["0", "1", "2"] },
436
+ mdEntryTypes: { type: "array", items: { type: "string" } }
437
+ },
438
+ required: [
439
+ "mdUpdateType",
440
+ "symbols",
441
+ "mdReqID",
442
+ "subscriptionRequestType",
443
+ "mdEntryTypes"
444
+ ]
445
+ }
446
+ },
447
+ {
448
+ name: "getStockGraph",
449
+ description: "Generates a price chart for a given symbol",
450
+ inputSchema: {
451
+ type: "object",
452
+ properties: {
453
+ symbol: { type: "string" }
454
+ },
455
+ required: ["symbol"]
456
+ }
457
+ },
458
+ {
459
+ name: "getStockPriceHistory",
460
+ description: "Returns price history for a given symbol",
461
+ inputSchema: {
462
+ type: "object",
463
+ properties: {
464
+ symbol: { type: "string" }
465
+ },
466
+ required: ["symbol"]
467
+ }
468
+ }
469
+ ]
470
+ };
471
+ }
472
+ );
473
+ this.server.setRequestHandler(
474
+ import_zod.z.object({
475
+ method: import_zod.z.literal("tools/call"),
476
+ params: import_zod.z.object({
477
+ name: import_zod.z.string(),
478
+ arguments: import_zod.z.any(),
479
+ _meta: import_zod.z.object({
480
+ progressToken: import_zod.z.number()
481
+ }).optional()
482
+ })
483
+ }),
484
+ async (request, extra) => {
485
+ const { name, arguments: args } = request.params;
486
+ switch (name) {
487
+ case "parse":
488
+ try {
489
+ const parsedMessage = this.parser?.parse(args.fixString);
490
+ if (!parsedMessage || parsedMessage.length === 0) {
491
+ return {
492
+ contents: [
493
+ {
494
+ type: "text",
495
+ text: "Error: Failed to parse FIX string",
496
+ uri: "parse"
497
+ }
498
+ ],
499
+ isError: true
500
+ };
501
+ }
1524
502
  return {
1525
- isError: true,
1526
- content: [{ type: "text", text: "Error: Failed to parse FIX string" }]
503
+ contents: [
504
+ {
505
+ type: "text",
506
+ text: `${parsedMessage[0].description}
507
+ ${parsedMessage[0].messageTypeDescription}`,
508
+ uri: "parse"
509
+ }
510
+ ]
1527
511
  };
1528
- }
1529
- return {
1530
- content: [
1531
- {
1532
- type: "text",
1533
- text: `Parsed FIX message: ${fixString} (placeholder implementation)`
1534
- }
1535
- ]
1536
- };
1537
- } catch (error) {
1538
- return {
1539
- isError: true,
1540
- content: [
1541
- {
1542
- type: "text",
1543
- text: "Error: Failed to parse FIX string"
1544
- }
1545
- ]
1546
- };
1547
- }
1548
- }
1549
- case "parseToJSON": {
1550
- const { fixString } = import_zod5.z.object({
1551
- fixString: import_zod5.z.string().describe("FIX message string to parse")
1552
- }).parse(args || {});
1553
- try {
1554
- const parsedMessage = this.parser?.parse(fixString);
1555
- if (!parsedMessage || parsedMessage.length === 0) {
512
+ } catch (error) {
1556
513
  return {
1557
- isError: true,
1558
- content: [{ type: "text", text: "Error: Failed to parse FIX string" }]
514
+ contents: [
515
+ {
516
+ type: "text",
517
+ text: `Error: ${error instanceof Error ? error.message : "Failed to parse FIX string"}`,
518
+ uri: "parse"
519
+ }
520
+ ],
521
+ isError: true
1559
522
  };
1560
523
  }
1561
- return {
1562
- content: [
1563
- {
1564
- type: "text",
1565
- text: JSON.stringify({ fixString, parsed: "placeholder" })
1566
- }
1567
- ]
1568
- };
1569
- } catch (error) {
1570
- return {
1571
- isError: true,
1572
- content: [
1573
- {
1574
- type: "text",
1575
- text: "Error: Failed to parse FIX string"
1576
- }
1577
- ]
1578
- };
1579
- }
1580
- }
1581
- case "newOrderSingle": {
1582
- const { clOrdID, handlInst, quantity, price, ordType, side, symbol, timeInForce } = import_zod5.z.object({
1583
- clOrdID: import_zod5.z.string().describe("Client Order ID"),
1584
- handlInst: import_zod5.z.enum(["1", "2", "3"]).default(import_fixparser.HandlInst.AutomatedExecutionNoIntervention).optional().describe("Handling instruction"),
1585
- quantity: import_zod5.z.number().describe("Order quantity"),
1586
- price: import_zod5.z.number().describe("Order price"),
1587
- ordType: import_zod5.z.enum([
1588
- "1",
1589
- "2",
1590
- "3",
1591
- "4",
1592
- "5",
1593
- "6",
1594
- "7",
1595
- "8",
1596
- "9",
1597
- "A",
1598
- "B",
1599
- "C",
1600
- "D",
1601
- "E",
1602
- "F",
1603
- "G",
1604
- "H",
1605
- "I",
1606
- "J",
1607
- "K",
1608
- "L",
1609
- "M",
1610
- "P",
1611
- "Q",
1612
- "R",
1613
- "S"
1614
- ]).default(import_fixparser.OrdType.Market).optional().describe("Order type"),
1615
- side: import_zod5.z.enum([
1616
- "1",
1617
- "2",
1618
- "3",
1619
- "4",
1620
- "5",
1621
- "6",
1622
- "7",
1623
- "8",
1624
- "9",
1625
- "A",
1626
- "B",
1627
- "C",
1628
- "D",
1629
- "E",
1630
- "F",
1631
- "G",
1632
- "H"
1633
- ]).describe("Order side (1=Buy, 2=Sell)"),
1634
- symbol: import_zod5.z.string().describe("Trading symbol"),
1635
- timeInForce: import_zod5.z.enum(["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"]).default(import_fixparser.TimeInForce.Day).optional().describe("Time in force")
1636
- }).parse(args || {});
1637
- const response = new Promise((resolve) => {
1638
- this.pendingRequests.set(clOrdID, resolve);
1639
- });
1640
- const order = this.parser?.createMessage(
1641
- new import_fixparser.Field(import_fixparser.Fields.MsgType, import_fixparser.Messages.NewOrderSingle),
1642
- new import_fixparser.Field(import_fixparser.Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),
1643
- new import_fixparser.Field(import_fixparser.Fields.SenderCompID, this.parser?.sender),
1644
- new import_fixparser.Field(import_fixparser.Fields.TargetCompID, this.parser?.target),
1645
- new import_fixparser.Field(import_fixparser.Fields.SendingTime, this.parser?.getTimestamp()),
1646
- new import_fixparser.Field(import_fixparser.Fields.ClOrdID, clOrdID),
1647
- new import_fixparser.Field(import_fixparser.Fields.Side, side),
1648
- new import_fixparser.Field(import_fixparser.Fields.Symbol, symbol),
1649
- new import_fixparser.Field(import_fixparser.Fields.OrderQty, quantity),
1650
- new import_fixparser.Field(import_fixparser.Fields.Price, price),
1651
- new import_fixparser.Field(import_fixparser.Fields.OrdType, ordType),
1652
- new import_fixparser.Field(import_fixparser.Fields.HandlInst, handlInst),
1653
- new import_fixparser.Field(import_fixparser.Fields.TimeInForce, timeInForce),
1654
- new import_fixparser.Field(import_fixparser.Fields.TransactTime, this.parser?.getTimestamp())
1655
- );
1656
- if (!this.parser?.connected) {
1657
- this.logger?.log({
1658
- level: "error",
1659
- message: "FIXParser (MCP): -- Not connected. Ignoring message."
1660
- });
1661
- return {
1662
- isError: true,
1663
- content: [
1664
- {
1665
- type: "text",
1666
- text: "Error: Not connected. Ignoring message."
1667
- }
1668
- ]
1669
- };
1670
- }
1671
- this.parser?.send(order);
1672
- this.logger?.log({
1673
- level: "info",
1674
- message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${order?.description}`
1675
- });
1676
- const fixData = await response;
1677
- return {
1678
- content: [
1679
- {
1680
- type: "text",
1681
- text: `Execution Report for order ${clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}`
524
+ case "parseToJSON":
525
+ try {
526
+ const parsedMessage = this.parser?.parse(args.fixString);
527
+ if (!parsedMessage || parsedMessage.length === 0) {
528
+ return {
529
+ contents: [
530
+ {
531
+ type: "text",
532
+ text: "Error: Failed to parse FIX string",
533
+ uri: "parseToJSON"
534
+ }
535
+ ],
536
+ isError: true
537
+ };
1682
538
  }
1683
- ]
1684
- };
1685
- }
1686
- case "marketDataRequest": {
1687
- const { mdUpdateType, symbol, mdReqID, subscriptionRequestType, mdEntryType } = import_zod5.z.object({
1688
- mdUpdateType: import_zod5.z.enum(["0", "1"]).default("0").optional().describe("Market data update type"),
1689
- symbol: import_zod5.z.string().describe("Trading symbol"),
1690
- mdReqID: import_zod5.z.string().describe("Market data request ID"),
1691
- subscriptionRequestType: import_zod5.z.enum(["0", "1", "2"]).default(import_fixparser.SubscriptionRequestType.SnapshotAndUpdates).optional().describe("Subscription request type"),
1692
- mdEntryType: import_zod5.z.enum([
1693
- "0",
1694
- "1",
1695
- "2",
1696
- "3",
1697
- "4",
1698
- "5",
1699
- "6",
1700
- "7",
1701
- "8",
1702
- "9",
1703
- "A",
1704
- "B",
1705
- "C",
1706
- "D",
1707
- "E",
1708
- "F",
1709
- "G",
1710
- "H",
1711
- "J",
1712
- "K",
1713
- "L",
1714
- "M",
1715
- "N",
1716
- "O",
1717
- "P",
1718
- "Q",
1719
- "S",
1720
- "R",
1721
- "T",
1722
- "U",
1723
- "V",
1724
- "W",
1725
- "X",
1726
- "Y",
1727
- "Z",
1728
- "a",
1729
- "b",
1730
- "c",
1731
- "d",
1732
- "e",
1733
- "g",
1734
- "h",
1735
- "i",
1736
- "t"
1737
- ]).default(import_fixparser.MDEntryType.Bid).optional().describe("Market data entry type")
1738
- }).parse(args || {});
1739
- const response = new Promise((resolve) => {
1740
- this.pendingRequests.set(mdReqID, resolve);
1741
- });
1742
- const marketDataRequest = this.parser?.createMessage(
1743
- new import_fixparser.Field(import_fixparser.Fields.MsgType, import_fixparser.Messages.MarketDataRequest),
1744
- new import_fixparser.Field(import_fixparser.Fields.SenderCompID, this.parser?.sender),
1745
- new import_fixparser.Field(import_fixparser.Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),
1746
- new import_fixparser.Field(import_fixparser.Fields.TargetCompID, this.parser?.target),
1747
- new import_fixparser.Field(import_fixparser.Fields.SendingTime, this.parser?.getTimestamp()),
1748
- new import_fixparser.Field(import_fixparser.Fields.MarketDepth, 0),
1749
- new import_fixparser.Field(import_fixparser.Fields.MDUpdateType, mdUpdateType),
1750
- new import_fixparser.Field(import_fixparser.Fields.NoRelatedSym, 1),
1751
- new import_fixparser.Field(import_fixparser.Fields.Symbol, symbol),
1752
- new import_fixparser.Field(import_fixparser.Fields.MDReqID, mdReqID),
1753
- new import_fixparser.Field(import_fixparser.Fields.SubscriptionRequestType, subscriptionRequestType),
1754
- new import_fixparser.Field(import_fixparser.Fields.NoMDEntryTypes, 1),
1755
- new import_fixparser.Field(import_fixparser.Fields.MDEntryType, mdEntryType)
1756
- );
1757
- if (!this.parser?.connected) {
1758
- this.logger?.log({
1759
- level: "error",
1760
- message: "FIXParser (MCP): -- Not connected. Ignoring message."
1761
- });
1762
- return {
1763
- isError: true,
1764
- content: [
1765
- {
1766
- type: "text",
1767
- text: "Error: Not connected. Ignoring message."
1768
- }
1769
- ]
1770
- };
1771
- }
1772
- this.parser?.send(marketDataRequest);
1773
- this.logger?.log({
1774
- level: "info",
1775
- message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${marketDataRequest?.description}`
1776
- });
1777
- const fixData = await response;
1778
- return {
1779
- content: [
1780
- {
1781
- type: "text",
1782
- text: `Market data for ${symbol}: ${JSON.stringify(fixData.toFIXJSON())}`
1783
- }
1784
- ]
1785
- };
1786
- }
1787
- default:
1788
- throw new Error(`Unknown tool: ${name}`);
1789
- }
1790
- });
1791
- this.server.setRequestHandler(import_types.ListPromptsRequestSchema, async () => {
1792
- return {
1793
- prompts: [
1794
- {
1795
- name: "parse",
1796
- description: "Parses a FIX message and describes it in plain language",
1797
- arguments: [
1798
- {
1799
- name: "fixString",
1800
- description: "FIX message string to parse",
1801
- required: true
1802
- }
1803
- ]
1804
- },
1805
- {
1806
- name: "parseToJSON",
1807
- description: "Parses a FIX message into JSON",
1808
- arguments: [
1809
- {
1810
- name: "fixString",
1811
- description: "FIX message string to parse",
1812
- required: true
539
+ return {
540
+ contents: [
541
+ {
542
+ type: "text",
543
+ text: `${parsedMessage[0].toFIXJSON()}`,
544
+ uri: "parseToJSON"
545
+ }
546
+ ]
547
+ };
548
+ } catch (error) {
549
+ return {
550
+ contents: [
551
+ {
552
+ type: "text",
553
+ text: `Error: ${error instanceof Error ? error.message : "Failed to parse FIX string"}`,
554
+ uri: "parseToJSON"
555
+ }
556
+ ],
557
+ isError: true
558
+ };
559
+ }
560
+ case "verifyOrder":
561
+ try {
562
+ this.verifiedOrders.set(args.clOrdID, {
563
+ clOrdID: args.clOrdID,
564
+ handlInst: args.handlInst,
565
+ quantity: Number.parseFloat(args.quantity),
566
+ price: Number.parseFloat(args.price),
567
+ ordType: args.ordType,
568
+ side: args.side,
569
+ symbol: args.symbol,
570
+ timeInForce: args.timeInForce
571
+ });
572
+ const ordTypeNames = {
573
+ "1": "Market",
574
+ "2": "Limit",
575
+ "3": "Stop",
576
+ "4": "StopLimit",
577
+ "5": "MarketOnClose",
578
+ "6": "WithOrWithout",
579
+ "7": "LimitOrBetter",
580
+ "8": "LimitWithOrWithout",
581
+ "9": "OnBasis",
582
+ A: "OnClose",
583
+ B: "LimitOnClose",
584
+ C: "ForexMarket",
585
+ D: "PreviouslyQuoted",
586
+ E: "PreviouslyIndicated",
587
+ F: "ForexLimit",
588
+ G: "ForexSwap",
589
+ H: "ForexPreviouslyQuoted",
590
+ I: "Funari",
591
+ J: "MarketIfTouched",
592
+ K: "MarketWithLeftOverAsLimit",
593
+ L: "PreviousFundValuationPoint",
594
+ M: "NextFundValuationPoint",
595
+ P: "Pegged",
596
+ Q: "CounterOrderSelection",
597
+ R: "StopOnBidOrOffer",
598
+ S: "StopLimitOnBidOrOffer"
599
+ };
600
+ const sideNames = {
601
+ "1": "Buy",
602
+ "2": "Sell",
603
+ "3": "BuyMinus",
604
+ "4": "SellPlus",
605
+ "5": "SellShort",
606
+ "6": "SellShortExempt",
607
+ "7": "Undisclosed",
608
+ "8": "Cross",
609
+ "9": "CrossShort",
610
+ A: "CrossShortExempt",
611
+ B: "AsDefined",
612
+ C: "Opposite",
613
+ D: "Subscribe",
614
+ E: "Redeem",
615
+ F: "Lend",
616
+ G: "Borrow",
617
+ H: "SellUndisclosed"
618
+ };
619
+ const timeInForceNames = {
620
+ "0": "Day",
621
+ "1": "GoodTillCancel",
622
+ "2": "AtTheOpening",
623
+ "3": "ImmediateOrCancel",
624
+ "4": "FillOrKill",
625
+ "5": "GoodTillCrossing",
626
+ "6": "GoodTillDate",
627
+ "7": "AtTheClose",
628
+ "8": "GoodThroughCrossing",
629
+ "9": "AtCrossing",
630
+ A: "GoodForTime",
631
+ B: "GoodForAuction",
632
+ C: "GoodForMonth"
633
+ };
634
+ const handlInstNames = {
635
+ "1": "AutomatedExecutionNoIntervention",
636
+ "2": "AutomatedExecutionInterventionOK",
637
+ "3": "ManualOrder"
638
+ };
639
+ return {
640
+ contents: [
641
+ {
642
+ type: "text",
643
+ text: `VERIFICATION: All parameters valid. Ready to proceed with order execution.
644
+
645
+ Parameters verified:
646
+ - ClOrdID: ${args.clOrdID}
647
+ - HandlInst: ${args.handlInst} (${handlInstNames[args.handlInst]})
648
+ - Quantity: ${args.quantity}
649
+ - Price: ${args.price}
650
+ - OrdType: ${args.ordType} (${ordTypeNames[args.ordType]})
651
+ - Side: ${args.side} (${sideNames[args.side]})
652
+ - Symbol: ${args.symbol}
653
+ - TimeInForce: ${args.timeInForce} (${timeInForceNames[args.timeInForce]})
654
+
655
+ To execute this order, call the executeOrder tool with these exact same parameters.`,
656
+ uri: "verifyOrder"
657
+ }
658
+ ]
659
+ };
660
+ } catch (error) {
661
+ return {
662
+ contents: [
663
+ {
664
+ type: "text",
665
+ text: `Error: ${error instanceof Error ? error.message : "Failed to verify order parameters"}`,
666
+ uri: "verifyOrder"
667
+ }
668
+ ],
669
+ isError: true
670
+ };
671
+ }
672
+ case "executeOrder":
673
+ try {
674
+ const verifiedOrder = this.verifiedOrders.get(args.clOrdID);
675
+ if (!verifiedOrder) {
676
+ return {
677
+ contents: [
678
+ {
679
+ type: "text",
680
+ text: `Error: Order ${args.clOrdID} has not been verified. Please call verifyOrder first.`,
681
+ uri: "executeOrder"
682
+ }
683
+ ],
684
+ isError: true
685
+ };
1813
686
  }
1814
- ]
1815
- },
1816
- {
1817
- name: "newOrderSingle",
1818
- description: "Creates and sends a New Order Single",
1819
- arguments: [
1820
- {
1821
- name: "clOrdID",
1822
- description: "Client Order ID",
1823
- required: true
1824
- },
1825
- {
1826
- name: "handlInst",
1827
- description: "Handling instruction",
1828
- required: false
1829
- },
1830
- {
1831
- name: "quantity",
1832
- description: "Order quantity",
1833
- required: true
1834
- },
1835
- {
1836
- name: "price",
1837
- description: "Order price",
1838
- required: true
1839
- },
1840
- {
1841
- name: "ordType",
1842
- description: "Order type",
1843
- required: false
1844
- },
1845
- {
1846
- name: "side",
1847
- description: "Order side (1=Buy, 2=Sell)",
1848
- required: true
1849
- },
1850
- {
1851
- name: "symbol",
1852
- description: "Trading symbol",
1853
- required: true
1854
- },
1855
- {
1856
- name: "timeInForce",
1857
- description: "Time in force",
1858
- required: false
687
+ if (verifiedOrder.handlInst !== args.handlInst || verifiedOrder.quantity !== Number.parseFloat(args.quantity) || verifiedOrder.price !== Number.parseFloat(args.price) || verifiedOrder.ordType !== args.ordType || verifiedOrder.side !== args.side || verifiedOrder.symbol !== args.symbol || verifiedOrder.timeInForce !== args.timeInForce) {
688
+ return {
689
+ contents: [
690
+ {
691
+ type: "text",
692
+ text: "Error: Order parameters do not match the verified order. Please use the exact same parameters that were verified.",
693
+ uri: "executeOrder"
694
+ }
695
+ ],
696
+ isError: true
697
+ };
1859
698
  }
1860
- ]
1861
- },
1862
- {
1863
- name: "marketDataRequest",
1864
- description: "Sends a request for Market Data with the given symbol",
1865
- arguments: [
1866
- {
1867
- name: "mdUpdateType",
1868
- description: "Market data update type",
1869
- required: false
1870
- },
1871
- {
1872
- name: "symbol",
1873
- description: "Trading symbol",
1874
- required: true
1875
- },
1876
- {
1877
- name: "mdReqID",
1878
- description: "Market data request ID",
1879
- required: true
1880
- },
1881
- {
1882
- name: "subscriptionRequestType",
1883
- description: "Subscription request type",
1884
- required: false
1885
- },
1886
- {
1887
- name: "mdEntryType",
1888
- description: "Market data entry type",
1889
- required: false
699
+ const response = new Promise((resolve) => {
700
+ this.pendingRequests.set(args.clOrdID, resolve);
701
+ });
702
+ const order = this.parser?.createMessage(
703
+ new import_fixparser.Field(import_fixparser.Fields.MsgType, import_fixparser.Messages.NewOrderSingle),
704
+ new import_fixparser.Field(import_fixparser.Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),
705
+ new import_fixparser.Field(import_fixparser.Fields.SenderCompID, this.parser?.sender),
706
+ new import_fixparser.Field(import_fixparser.Fields.TargetCompID, this.parser?.target),
707
+ new import_fixparser.Field(import_fixparser.Fields.SendingTime, this.parser?.getTimestamp()),
708
+ new import_fixparser.Field(import_fixparser.Fields.ClOrdID, args.clOrdID),
709
+ new import_fixparser.Field(import_fixparser.Fields.Side, args.side),
710
+ new import_fixparser.Field(import_fixparser.Fields.Symbol, args.symbol),
711
+ new import_fixparser.Field(import_fixparser.Fields.OrderQty, Number.parseFloat(args.quantity)),
712
+ new import_fixparser.Field(import_fixparser.Fields.Price, Number.parseFloat(args.price)),
713
+ new import_fixparser.Field(import_fixparser.Fields.OrdType, args.ordType),
714
+ new import_fixparser.Field(import_fixparser.Fields.HandlInst, args.handlInst),
715
+ new import_fixparser.Field(import_fixparser.Fields.TimeInForce, args.timeInForce),
716
+ new import_fixparser.Field(import_fixparser.Fields.TransactTime, this.parser?.getTimestamp())
717
+ );
718
+ if (!this.parser?.connected) {
719
+ return {
720
+ contents: [
721
+ {
722
+ type: "text",
723
+ text: "Error: Not connected. Ignoring message.",
724
+ uri: "executeOrder"
725
+ }
726
+ ],
727
+ isError: true
728
+ };
1890
729
  }
1891
- ]
1892
- }
1893
- ]
1894
- };
1895
- });
1896
- this.server.setRequestHandler(import_types.GetPromptRequestSchema, async (request) => {
1897
- const { name, arguments: args } = request.params;
1898
- switch (name) {
1899
- case "parse": {
1900
- const fixString = args?.fixString || "";
1901
- return {
1902
- messages: [
1903
- {
1904
- role: "user",
1905
- content: {
1906
- type: "text",
1907
- text: `Please parse and explain this FIX message: ${fixString}`
1908
- }
730
+ this.parser?.send(order);
731
+ const fixData = await response;
732
+ this.verifiedOrders.delete(args.clOrdID);
733
+ return {
734
+ contents: [
735
+ {
736
+ type: "text",
737
+ text: fixData.messageType === import_fixparser.Messages.Reject ? `Reject message for order ${args.clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}` : `Execution Report for order ${args.clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}`,
738
+ uri: "executeOrder"
739
+ }
740
+ ]
741
+ };
742
+ } catch (error) {
743
+ return {
744
+ contents: [
745
+ {
746
+ type: "text",
747
+ text: `Error: ${error instanceof Error ? error.message : "Failed to execute order"}`,
748
+ uri: "executeOrder"
749
+ }
750
+ ],
751
+ isError: true
752
+ };
753
+ }
754
+ case "marketDataRequest":
755
+ try {
756
+ const response = new Promise((resolve) => {
757
+ this.pendingRequests.set(args.mdReqID, resolve);
758
+ });
759
+ const messageFields = [
760
+ new import_fixparser.Field(import_fixparser.Fields.MsgType, import_fixparser.Messages.MarketDataRequest),
761
+ new import_fixparser.Field(import_fixparser.Fields.SenderCompID, this.parser?.sender),
762
+ new import_fixparser.Field(import_fixparser.Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),
763
+ new import_fixparser.Field(import_fixparser.Fields.TargetCompID, this.parser?.target),
764
+ new import_fixparser.Field(import_fixparser.Fields.SendingTime, this.parser?.getTimestamp()),
765
+ new import_fixparser.Field(import_fixparser.Fields.MDReqID, args.mdReqID),
766
+ new import_fixparser.Field(import_fixparser.Fields.SubscriptionRequestType, args.subscriptionRequestType),
767
+ new import_fixparser.Field(import_fixparser.Fields.MarketDepth, 0),
768
+ new import_fixparser.Field(import_fixparser.Fields.MDUpdateType, args.mdUpdateType)
769
+ ];
770
+ messageFields.push(new import_fixparser.Field(import_fixparser.Fields.NoRelatedSym, args.symbols.length));
771
+ args.symbols.forEach((symbol) => {
772
+ messageFields.push(new import_fixparser.Field(import_fixparser.Fields.Symbol, symbol));
773
+ });
774
+ messageFields.push(new import_fixparser.Field(import_fixparser.Fields.NoMDEntryTypes, args.mdEntryTypes.length));
775
+ args.mdEntryTypes.forEach((entryType) => {
776
+ messageFields.push(new import_fixparser.Field(import_fixparser.Fields.MDEntryType, entryType));
777
+ });
778
+ const mdr = this.parser?.createMessage(...messageFields);
779
+ if (!this.parser?.connected) {
780
+ return {
781
+ contents: [
782
+ {
783
+ type: "text",
784
+ text: "Error: Not connected. Ignoring message.",
785
+ uri: "marketDataRequest"
786
+ }
787
+ ],
788
+ isError: true
789
+ };
1909
790
  }
1910
- ]
1911
- };
1912
- }
1913
- case "parseToJSON": {
1914
- const fixString = args?.fixString || "";
1915
- return {
1916
- messages: [
1917
- {
1918
- role: "user",
1919
- content: {
1920
- type: "text",
1921
- text: `Please parse the FIX message to JSON: ${fixString}`
1922
- }
791
+ this.parser?.send(mdr);
792
+ const fixData = await response;
793
+ return {
794
+ contents: [
795
+ {
796
+ type: "text",
797
+ text: `Market data for ${args.symbols.join(", ")}: ${JSON.stringify(fixData.toFIXJSON())}`,
798
+ uri: "marketDataRequest"
799
+ }
800
+ ]
801
+ };
802
+ } catch (error) {
803
+ return {
804
+ contents: [
805
+ {
806
+ type: "text",
807
+ text: `Error: ${error instanceof Error ? error.message : "Failed to request market data"}`,
808
+ uri: "marketDataRequest"
809
+ }
810
+ ],
811
+ isError: true
812
+ };
813
+ }
814
+ case "getStockGraph":
815
+ try {
816
+ const symbol = args.symbol;
817
+ const priceHistory = this.marketDataPrices.get(symbol) || [];
818
+ if (priceHistory.length === 0) {
819
+ return {
820
+ contents: [
821
+ {
822
+ type: "text",
823
+ text: `No price data available for ${symbol}`,
824
+ uri: "getStockGraph"
825
+ }
826
+ ]
827
+ };
1923
828
  }
1924
- ]
1925
- };
1926
- }
1927
- case "newOrderSingle": {
1928
- const { clOrdID, handlInst, quantity, price, ordType, side, symbol, timeInForce } = args || {};
1929
- return {
1930
- messages: [
1931
- {
1932
- role: "user",
1933
- content: {
1934
- type: "text",
1935
- text: [
1936
- "Create a New Order Single FIX message with the following parameters:",
1937
- `- ClOrdID: ${clOrdID}`,
1938
- `- HandlInst: ${handlInst ?? "default"}`,
1939
- `- Quantity: ${quantity}`,
1940
- `- Price: ${price}`,
1941
- `- OrdType: ${ordType ?? "default (Market)"}`,
1942
- `- Side: ${side}`,
1943
- `- Symbol: ${symbol}`,
1944
- `- TimeInForce: ${timeInForce ?? "default (Day)"}`,
1945
- "",
1946
- "Format the response as a JSON object with FIX tag numbers as keys and their corresponding values."
1947
- ].join("\n")
1948
- }
829
+ const width = 600;
830
+ const height = 300;
831
+ const padding = 40;
832
+ const xScale = (width - 2 * padding) / (priceHistory.length - 1);
833
+ const yMin = Math.min(...priceHistory.map((d) => d.price));
834
+ const yMax = Math.max(...priceHistory.map((d) => d.price));
835
+ const yScale = (height - 2 * padding) / (yMax - yMin);
836
+ const points = priceHistory.map((d, i) => {
837
+ const x = padding + i * xScale;
838
+ const y = height - padding - (d.price - yMin) * yScale;
839
+ return `${x},${y}`;
840
+ }).join(" L ");
841
+ const svg = `<?xml version="1.0" encoding="UTF-8"?>
842
+ <svg width="${width}" height="${height}" xmlns="http://www.w3.org/2000/svg">
843
+ <!-- Background -->
844
+ <rect width="100%" height="100%" fill="#f8f9fa"/>
845
+
846
+ <!-- Grid lines -->
847
+ <g stroke="#e9ecef" stroke-width="1">
848
+ ${Array.from({ length: 5 }, (_, i) => {
849
+ const y = padding + (height - 2 * padding) * i / 4;
850
+ return `<line x1="${padding}" y1="${y}" x2="${width - padding}" y2="${y}"/>`;
851
+ }).join("\n")}
852
+ </g>
853
+
854
+ <!-- Price line -->
855
+ <path d="M ${points}"
856
+ fill="none"
857
+ stroke="#007bff"
858
+ stroke-width="2"/>
859
+
860
+ <!-- Data points -->
861
+ ${priceHistory.map((d, i) => {
862
+ const x = padding + i * xScale;
863
+ const y = height - padding - (d.price - yMin) * yScale;
864
+ return `<circle cx="${x}" cy="${y}" r="3" fill="#007bff"/>`;
865
+ }).join("\n")}
866
+
867
+ <!-- Labels -->
868
+ <g font-family="Arial" font-size="12" fill="#495057">
869
+ ${Array.from({ length: 5 }, (_, i) => {
870
+ const x = padding + (width - 2 * padding) * i / 4;
871
+ const index = Math.floor((priceHistory.length - 1) * i / 4);
872
+ const timestamp = new Date(priceHistory[index].timestamp).toLocaleTimeString();
873
+ return `<text x="${x + padding}" y="${height - padding + 20}" text-anchor="middle">${timestamp}</text>`;
874
+ }).join("\n")}
875
+ ${Array.from({ length: 5 }, (_, i) => {
876
+ const y = padding + (height - 2 * padding) * i / 4;
877
+ const price = yMax - (yMax - yMin) * i / 4;
878
+ return `<text x="${padding - 5}" y="${y + 4}" text-anchor="end">$${price.toFixed(2)}</text>`;
879
+ }).join("\n")}
880
+ </g>
881
+
882
+ <!-- Title -->
883
+ <text x="${width / 2}" y="${padding / 2}"
884
+ font-family="Arial" font-size="16" font-weight="bold"
885
+ text-anchor="middle" fill="#212529">
886
+ ${symbol} - Price Chart (${priceHistory.length} points)
887
+ </text>
888
+ </svg>`;
889
+ return {
890
+ contents: [
891
+ {
892
+ type: "text",
893
+ text: svg,
894
+ uri: "getStockGraph"
895
+ }
896
+ ]
897
+ };
898
+ } catch (error) {
899
+ return {
900
+ contents: [
901
+ {
902
+ type: "text",
903
+ text: `Error: ${error instanceof Error ? error.message : "Failed to generate stock graph"}`,
904
+ uri: "getStockGraph"
905
+ }
906
+ ],
907
+ isError: true
908
+ };
909
+ }
910
+ case "getStockPriceHistory":
911
+ try {
912
+ const symbol = args.symbol;
913
+ const priceHistory = this.marketDataPrices.get(symbol) || [];
914
+ if (priceHistory.length === 0) {
915
+ return {
916
+ contents: [
917
+ {
918
+ type: "text",
919
+ text: `No price data available for ${symbol}`,
920
+ uri: "getStockPriceHistory"
921
+ }
922
+ ]
923
+ };
1949
924
  }
1950
- ]
1951
- };
1952
- }
1953
- case "marketDataRequest": {
1954
- const { mdUpdateType, symbol, mdReqID, subscriptionRequestType, mdEntryType } = args || {};
1955
- return {
1956
- messages: [
1957
- {
1958
- role: "user",
1959
- content: {
925
+ return {
926
+ contents: [
927
+ {
928
+ type: "text",
929
+ text: JSON.stringify(
930
+ {
931
+ symbol,
932
+ count: priceHistory.length,
933
+ prices: priceHistory.map((point) => ({
934
+ timestamp: new Date(point.timestamp).toISOString(),
935
+ price: point.price
936
+ }))
937
+ },
938
+ null,
939
+ 2
940
+ ),
941
+ uri: "getStockPriceHistory"
942
+ }
943
+ ]
944
+ };
945
+ } catch (error) {
946
+ return {
947
+ contents: [
948
+ {
949
+ type: "text",
950
+ text: `Error: ${error instanceof Error ? error.message : "Failed to get stock price history"}`,
951
+ uri: "getStockPriceHistory"
952
+ }
953
+ ],
954
+ isError: true
955
+ };
956
+ }
957
+ default:
958
+ return {
959
+ contents: [
960
+ {
1960
961
  type: "text",
1961
- text: [
1962
- "Create a Market Data Request FIX message with the following parameters:",
1963
- `- MDUpdateType: ${mdUpdateType ?? "default (0 = FullRefresh)"}`,
1964
- `- Symbol: ${symbol}`,
1965
- `- MDReqID: ${mdReqID}`,
1966
- `- SubscriptionRequestType: ${subscriptionRequestType ?? "default (0 = Snapshot + Updates)"}`,
1967
- `- MDEntryType: ${mdEntryType ?? "default (0 = Bid)"}`,
1968
- "",
1969
- "Format the response as a JSON object with FIX tag numbers as keys and their corresponding values."
1970
- ].join("\n")
962
+ text: `Tool not found: ${name}`,
963
+ uri: name
1971
964
  }
1972
- }
1973
- ]
1974
- };
965
+ ],
966
+ isError: true
967
+ };
1975
968
  }
1976
- default:
1977
- throw new Error(`Unknown prompt: ${name}`);
1978
969
  }
1979
- });
970
+ );
1980
971
  process.on("SIGINT", async () => {
1981
972
  await this.server.close();
1982
973
  process.exit(0);