fixparser-plugin-mcp 9.1.7-f3ba3218 → 9.1.7-fe71108a

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.
@@ -57,7 +57,6 @@ var newOrderSingleInputSchema = {
57
57
  handlInst: {
58
58
  type: "string",
59
59
  enum: ["1", "2", "3"],
60
- default: import_fixparser.HandlInst.AutomatedExecutionNoIntervention,
61
60
  description: 'Handling instruction (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use "1" for Manual, "2" for Automated, "3" for AutomatedNoIntervention)'
62
61
  },
63
62
  quantity: {
@@ -98,7 +97,6 @@ var newOrderSingleInputSchema = {
98
97
  "R",
99
98
  "S"
100
99
  ],
101
- default: import_fixparser.OrdType.Market,
102
100
  description: 'Order type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use "1" for Market, "2" for Limit, "3" for Stop)'
103
101
  },
104
102
  side: {
@@ -113,11 +111,10 @@ var newOrderSingleInputSchema = {
113
111
  timeInForce: {
114
112
  type: "string",
115
113
  enum: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"],
116
- default: import_fixparser.TimeInForce.Day,
117
114
  description: 'Time in force (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use "0" for Day, "1" for Good Till Cancel, "2" for At Opening, "3" for Immediate or Cancel, "4" for Fill or Kill, "5" for Good Till Crossing, "6" for Good Till Date)'
118
115
  }
119
116
  },
120
- required: ["clOrdID", "quantity", "price", "side", "symbol"]
117
+ required: ["clOrdID", "quantity", "price", "side", "symbol", "handlInst", "ordType", "timeInForce"]
121
118
  };
122
119
  var marketDataRequestInputSchema = {
123
120
  type: "object",
@@ -125,7 +122,6 @@ var marketDataRequestInputSchema = {
125
122
  mdUpdateType: {
126
123
  type: "string",
127
124
  enum: ["0", "1"],
128
- default: "0",
129
125
  description: 'Market data update type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use "0" for FullRefresh, "1" for IncrementalRefresh)'
130
126
  },
131
127
  symbol: {
@@ -139,7 +135,6 @@ var marketDataRequestInputSchema = {
139
135
  subscriptionRequestType: {
140
136
  type: "string",
141
137
  enum: ["0", "1", "2"],
142
- default: import_fixparser.SubscriptionRequestType.SnapshotAndUpdates,
143
138
  description: 'Subscription request type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use "0" for Snapshot + Updates, "1" for Snapshot, "2" for Unsubscribe)'
144
139
  },
145
140
  mdEntryType: {
@@ -190,14 +185,13 @@ var marketDataRequestInputSchema = {
190
185
  "i",
191
186
  "t"
192
187
  ],
193
- default: import_fixparser.MDEntryType.Bid,
194
188
  description: 'Market data entry type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use "0" for Bid, "1" for Offer, "2" for Trade, "3" for Index Value, "4" for Opening Price)'
195
189
  }
196
190
  },
197
191
  required: ["symbol", "mdReqID"]
198
192
  };
199
193
  var MCPLocal = class {
200
- logger;
194
+ // private logger: Logger | undefined;
201
195
  parser;
202
196
  server = new import_server.Server(
203
197
  {
@@ -216,27 +210,32 @@ var MCPLocal = class {
216
210
  onReady = void 0;
217
211
  pendingRequests = /* @__PURE__ */ new Map();
218
212
  constructor({ logger, onReady }) {
219
- if (logger && !logger.silent) {
220
- this.logger = logger;
221
- }
222
213
  if (onReady) this.onReady = onReady;
223
214
  }
224
215
  async register(parser) {
225
216
  this.parser = parser;
226
- if (parser.logger && !parser.logger.silent) {
227
- this.logger = parser.logger;
228
- }
229
217
  this.parser.addOnMessageCallback((message) => {
230
218
  const msgType = message.messageType;
231
- if (msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh || msgType === import_fixparser.Messages.ExecutionReport) {
232
- const idField = msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh ? message.getField(import_fixparser.Fields.MDReqID) : message.getField(import_fixparser.Fields.ClOrdID);
219
+ if (msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh || msgType === import_fixparser.Messages.ExecutionReport || msgType === import_fixparser.Messages.Reject) {
220
+ const idField = msgType === import_fixparser.Messages.MarketDataSnapshotFullRefresh ? message.getField(import_fixparser.Fields.MDReqID) : msgType === import_fixparser.Messages.Reject ? message.getField(import_fixparser.Fields.RefSeqNum) : message.getField(import_fixparser.Fields.ClOrdID);
233
221
  if (idField) {
234
222
  const id = idField.value;
235
223
  if (typeof id === "string" || typeof id === "number") {
236
- const callback = this.pendingRequests.get(String(id));
237
- if (callback) {
238
- callback(message);
239
- this.pendingRequests.delete(String(id));
224
+ if (msgType === import_fixparser.Messages.Reject) {
225
+ const refMsgType = message.getField(import_fixparser.Fields.RefMsgType);
226
+ if (refMsgType && refMsgType.value === import_fixparser.Messages.NewOrderSingle) {
227
+ const callback = this.pendingRequests.get(String(id));
228
+ if (callback) {
229
+ callback(message);
230
+ this.pendingRequests.delete(String(id));
231
+ }
232
+ }
233
+ } else {
234
+ const callback = this.pendingRequests.get(String(id));
235
+ if (callback) {
236
+ callback(message);
237
+ this.pendingRequests.delete(String(id));
238
+ }
240
239
  }
241
240
  }
242
241
  }
@@ -250,17 +249,9 @@ var MCPLocal = class {
250
249
  }
251
250
  addWorkflows() {
252
251
  if (!this.parser) {
253
- this.logger?.log({
254
- level: "error",
255
- message: "FIXParser (MCP): -- FIXParser instance not initialized. Ignoring setup of workflows..."
256
- });
257
252
  return;
258
253
  }
259
254
  if (!this.server) {
260
- this.logger?.log({
261
- level: "error",
262
- message: "FIXParser (MCP): -- MCP Server not initialized. Ignoring setup of workflows..."
263
- });
264
255
  return;
265
256
  }
266
257
  const validateArgs = (args, schema) => {
@@ -397,10 +388,6 @@ ${parsedMessage[0].messageTypeDescription}`
397
388
  new import_fixparser.Field(import_fixparser.Fields.TransactTime, this.parser?.getTimestamp())
398
389
  );
399
390
  if (!this.parser?.connected) {
400
- this.logger?.log({
401
- level: "error",
402
- message: "FIXParser (MCP): -- Not connected. Ignoring message."
403
- });
404
391
  return {
405
392
  isError: true,
406
393
  content: [
@@ -412,16 +399,12 @@ ${parsedMessage[0].messageTypeDescription}`
412
399
  };
413
400
  }
414
401
  this.parser?.send(order);
415
- this.logger?.log({
416
- level: "info",
417
- message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${order?.description}`
418
- });
419
402
  const fixData = await response;
420
403
  return {
421
404
  content: [
422
405
  {
423
406
  type: "text",
424
- text: `Execution Report for order ${clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}`
407
+ text: fixData.messageType === import_fixparser.Messages.Reject ? `Reject message for order ${clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}` : `Execution Report for order ${clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}`
425
408
  }
426
409
  ]
427
410
  };
@@ -462,10 +445,6 @@ ${parsedMessage[0].messageTypeDescription}`
462
445
  new import_fixparser.Field(import_fixparser.Fields.MDEntryType, mdEntryType)
463
446
  );
464
447
  if (!this.parser?.connected) {
465
- this.logger?.log({
466
- level: "error",
467
- message: "FIXParser (MCP): -- Not connected. Ignoring message."
468
- });
469
448
  return {
470
449
  isError: true,
471
450
  content: [
@@ -477,10 +456,6 @@ ${parsedMessage[0].messageTypeDescription}`
477
456
  };
478
457
  }
479
458
  this.parser?.send(marketDataRequest);
480
- this.logger?.log({
481
- level: "info",
482
- message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${marketDataRequest?.description}`
483
- });
484
459
  const fixData = await response;
485
460
  return {
486
461
  content: [
@@ -543,7 +518,7 @@ ${parsedMessage[0].messageTypeDescription}`
543
518
  {
544
519
  name: "handlInst",
545
520
  description: "Handling instruction",
546
- required: false
521
+ required: true
547
522
  },
548
523
  {
549
524
  name: "quantity",
@@ -558,7 +533,7 @@ ${parsedMessage[0].messageTypeDescription}`
558
533
  {
559
534
  name: "ordType",
560
535
  description: "Order type",
561
- required: false
536
+ required: true
562
537
  },
563
538
  {
564
539
  name: "side",
@@ -573,7 +548,7 @@ ${parsedMessage[0].messageTypeDescription}`
573
548
  {
574
549
  name: "timeInForce",
575
550
  description: "Time in force",
576
- required: false
551
+ required: true
577
552
  }
578
553
  ]
579
554
  },
@@ -584,7 +559,7 @@ ${parsedMessage[0].messageTypeDescription}`
584
559
  {
585
560
  name: "mdUpdateType",
586
561
  description: "Market data update type",
587
- required: false
562
+ required: true
588
563
  },
589
564
  {
590
565
  name: "symbol",
@@ -599,12 +574,12 @@ ${parsedMessage[0].messageTypeDescription}`
599
574
  {
600
575
  name: "subscriptionRequestType",
601
576
  description: "Subscription request type",
602
- required: false
577
+ required: true
603
578
  },
604
579
  {
605
580
  name: "mdEntryType",
606
581
  description: "Market data entry type",
607
- required: false
582
+ required: true
608
583
  }
609
584
  ]
610
585
  }
@@ -661,12 +636,14 @@ ${parsedMessage[0].messageTypeDescription}`
661
636
  `- Symbol: ${symbol}`,
662
637
  `- TimeInForce: ${timeInForce ?? "0"} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for Day, '1' for Good Till Cancel, '2' for At Opening, '3' for Immediate or Cancel, '4' for Fill or Kill, '5' for Good Till Crossing, '6' for Good Till Date)`,
663
638
  "",
664
- "Format the response as a JSON object with FIX tag numbers as keys and their corresponding values.",
665
- "",
666
- 'Note: For the Side parameter, always use the numeric/alphabetic value (e.g., "1" for Buy, "2" for Sell) as defined in the FIX protocol, not the descriptive name.',
667
- 'Note: For the HandlInst parameter, always use the numeric/alphabetic value (e.g., "1" for Manual, "2" for Automated, "3" for AutomatedNoIntervention) as defined in the FIX protocol, not the descriptive name.',
668
639
  'Note: For the OrdType parameter, always use the numeric/alphabetic value (e.g., "1" for Market, "2" for Limit, "3" for Stop) as defined in the FIX protocol, not the descriptive name.',
669
- 'Note: For the TimeInForce parameter, always use the numeric/alphabetic value (e.g., "0" for Day, "1" for Good Till Cancel, "2" for At Opening) as defined in the FIX protocol, not the descriptive name.'
640
+ 'Note: For the TimeInForce parameter, always use the numeric/alphabetic value (e.g., "0" for Day, "1" for Good Till Cancel, "2" for At Opening) as defined in the FIX protocol, not the descriptive name.',
641
+ "",
642
+ "IMPORTANT: All parameters must be set before sending the order. Missing or invalid parameters will result in a Reject message.",
643
+ "",
644
+ "IMPORTANT: The response will be either:",
645
+ "1. An Execution Report (MsgType=8) if the order was successfully placed",
646
+ "2. A Reject message (MsgType=3) if the order failed to execute (e.g., due to missing or invalid parameters)"
670
647
  ].join("\n")
671
648
  }
672
649
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/MCPLocal.ts"],
4
- "sourcesContent": ["import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport {\n CallToolRequestSchema,\n GetPromptRequestSchema,\n ListPromptsRequestSchema,\n ListResourcesRequestSchema,\n ListToolsRequestSchema,\n} from '@modelcontextprotocol/sdk/types.js';\n\nimport {\n Field,\n Fields,\n HandlInst,\n type IFIXParser,\n type Logger,\n MDEntryType,\n type Message,\n Messages,\n OrdType,\n SubscriptionRequestType,\n TimeInForce,\n} from 'fixparser';\nimport type { IPlugin } from 'fixparser-common';\nimport type { PluginOptions } from './PluginOptions';\n\n// Define JSON Schemas\nconst parseInputSchema = {\n type: 'object',\n properties: {\n fixString: {\n type: 'string',\n description: 'FIX message string to parse',\n },\n },\n required: ['fixString'],\n};\n\nconst parseToJSONInputSchema = {\n type: 'object',\n properties: {\n fixString: {\n type: 'string',\n description: 'FIX message string to parse',\n },\n },\n required: ['fixString'],\n};\n\nconst newOrderSingleInputSchema = {\n type: 'object',\n properties: {\n clOrdID: {\n type: 'string',\n description: 'Client Order ID',\n },\n handlInst: {\n type: 'string',\n enum: ['1', '2', '3'],\n default: HandlInst.AutomatedExecutionNoIntervention,\n description:\n 'Handling instruction (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"1\" for Manual, \"2\" for Automated, \"3\" for AutomatedNoIntervention)',\n },\n quantity: {\n type: 'number',\n description: 'Order quantity',\n },\n price: {\n type: 'number',\n description: 'Order price',\n },\n ordType: {\n type: 'string',\n enum: [\n '1',\n '2',\n '3',\n '4',\n '5',\n '6',\n '7',\n '8',\n '9',\n 'A',\n 'B',\n 'C',\n 'D',\n 'E',\n 'F',\n 'G',\n 'H',\n 'I',\n 'J',\n 'K',\n 'L',\n 'M',\n 'P',\n 'Q',\n 'R',\n 'S',\n ],\n default: OrdType.Market,\n description:\n 'Order type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"1\" for Market, \"2\" for Limit, \"3\" for Stop)',\n },\n side: {\n type: 'string',\n enum: ['1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],\n description:\n 'Order side (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"1\" for Buy, \"2\" for Sell, \"3\" for BuyMinus, \"4\" for SellPlus, \"5\" for SellShort, \"6\" for SellShortExempt, \"7\" for Undisclosed, \"8\" for Cross, \"9\" for CrossShort, \"A\" for CrossShortExempt, \"B\" for AsDefined, \"C\" for Opposite, \"D\" for Subscribe, \"E\" for Redeem, \"F\" for Lend, \"G\" for Borrow, \"H\" for SellUndisclosed)',\n },\n symbol: {\n type: 'string',\n description: 'Trading symbol',\n },\n timeInForce: {\n type: 'string',\n enum: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C'],\n default: TimeInForce.Day,\n description:\n 'Time in force (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for Day, \"1\" for Good Till Cancel, \"2\" for At Opening, \"3\" for Immediate or Cancel, \"4\" for Fill or Kill, \"5\" for Good Till Crossing, \"6\" for Good Till Date)',\n },\n },\n required: ['clOrdID', 'quantity', 'price', 'side', 'symbol'],\n};\n\nconst marketDataRequestInputSchema = {\n type: 'object',\n properties: {\n mdUpdateType: {\n type: 'string',\n enum: ['0', '1'],\n default: '0',\n description:\n 'Market data update type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for FullRefresh, \"1\" for IncrementalRefresh)',\n },\n symbol: {\n type: 'string',\n description: 'Trading symbol',\n },\n mdReqID: {\n type: 'string',\n description: 'Market data request ID',\n },\n subscriptionRequestType: {\n type: 'string',\n enum: ['0', '1', '2'],\n default: SubscriptionRequestType.SnapshotAndUpdates,\n description:\n 'Subscription request type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for Snapshot + Updates, \"1\" for Snapshot, \"2\" for Unsubscribe)',\n },\n mdEntryType: {\n type: 'string',\n enum: [\n '0',\n '1',\n '2',\n '3',\n '4',\n '5',\n '6',\n '7',\n '8',\n '9',\n 'A',\n 'B',\n 'C',\n 'D',\n 'E',\n 'F',\n 'G',\n 'H',\n 'J',\n 'K',\n 'L',\n 'M',\n 'N',\n 'O',\n 'P',\n 'Q',\n 'S',\n 'R',\n 'T',\n 'U',\n 'V',\n 'W',\n 'X',\n 'Y',\n 'Z',\n 'a',\n 'b',\n 'c',\n 'd',\n 'e',\n 'g',\n 'h',\n 'i',\n 't',\n ],\n default: MDEntryType.Bid,\n description:\n 'Market data entry type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for Bid, \"1\" for Offer, \"2\" for Trade, \"3\" for Index Value, \"4\" for Opening Price)',\n },\n },\n required: ['symbol', 'mdReqID'],\n};\n\nexport class MCPLocal implements IPlugin<IFIXParser> {\n private logger: Logger | undefined;\n private parser: IFIXParser | undefined;\n private server: Server = new Server(\n {\n name: 'fixparser',\n version: '1.0.0',\n },\n {\n capabilities: {\n tools: {},\n prompts: {},\n resources: {},\n },\n },\n );\n private transport: StdioServerTransport = new StdioServerTransport();\n private onReady: (() => void) | undefined = undefined;\n\n private pendingRequests: Map<string, (data: Message) => void> = new Map();\n\n constructor({ logger, onReady }: PluginOptions) {\n if (logger && !logger.silent) {\n this.logger = logger;\n }\n\n if (onReady) this.onReady = onReady;\n }\n\n public async register(parser: IFIXParser): Promise<void> {\n this.parser = parser;\n if (parser.logger && !parser.logger.silent) {\n this.logger = parser.logger;\n }\n this.parser.addOnMessageCallback((message: Message) => {\n // this.logger?.log({\n // level: 'info',\n // message: `FIXParser (MCP): (${parser.protocol?.toUpperCase()}): << received ${message.description}`,\n // });\n const msgType = message.messageType;\n if (msgType === Messages.MarketDataSnapshotFullRefresh || msgType === Messages.ExecutionReport) {\n const idField =\n msgType === Messages.MarketDataSnapshotFullRefresh\n ? message.getField(Fields.MDReqID)\n : message.getField(Fields.ClOrdID);\n if (idField) {\n const id = idField.value;\n if (typeof id === 'string' || typeof id === 'number') {\n const callback = this.pendingRequests.get(String(id));\n if (callback) {\n callback(message);\n this.pendingRequests.delete(String(id));\n }\n }\n }\n }\n });\n\n this.addWorkflows();\n\n await this.server.connect(this.transport);\n\n if (this.onReady) {\n this.onReady();\n }\n }\n\n private addWorkflows() {\n if (!this.parser) {\n this.logger?.log({\n level: 'error',\n message: 'FIXParser (MCP): -- FIXParser instance not initialized. Ignoring setup of workflows...',\n });\n return;\n }\n\n if (!this.server) {\n this.logger?.log({\n level: 'error',\n message: 'FIXParser (MCP): -- MCP Server not initialized. Ignoring setup of workflows...',\n });\n return;\n }\n\n // Helper function to validate and parse arguments\n const validateArgs = (args: any, schema: any): any => {\n // Basic validation - in a real implementation, you might want to use a proper JSON Schema validator\n const result: any = {};\n\n for (const [key, propSchema] of Object.entries(schema.properties || {})) {\n const prop = propSchema as any;\n const value = args?.[key];\n\n if (prop.required && (value === undefined || value === null)) {\n throw new Error(`Required property '${key}' is missing`);\n }\n\n if (value !== undefined) {\n // Apply defaults\n result[key] = value;\n } else if (prop.default !== undefined) {\n result[key] = prop.default;\n }\n }\n\n return result;\n };\n\n // Empty handler for resources\n this.server.setRequestHandler(ListResourcesRequestSchema, async () => {\n return {\n resources: [],\n };\n });\n\n // Handler for listing available tools\n this.server.setRequestHandler(ListToolsRequestSchema, async () => {\n return {\n tools: [\n {\n name: 'parse',\n description: 'Parses a FIX message and describes it in plain language',\n inputSchema: parseInputSchema,\n },\n {\n name: 'parseToJSON',\n description: 'Parses a FIX message into JSON',\n inputSchema: parseToJSONInputSchema,\n },\n {\n name: 'newOrderSingle',\n description: 'Creates and sends a New Order Single',\n inputSchema: newOrderSingleInputSchema,\n },\n {\n name: 'marketDataRequest',\n description: 'Sends a request for Market Data with the given symbol',\n inputSchema: marketDataRequestInputSchema,\n },\n ],\n };\n });\n\n // Handler for tool calls\n this.server.setRequestHandler(CallToolRequestSchema, async (request) => {\n const { name, arguments: args } = request.params;\n\n switch (name) {\n case 'parse': {\n try {\n const { fixString } = validateArgs(args, parseInputSchema);\n const parsedMessage: Message[] | undefined = this.parser?.parse(fixString);\n if (!parsedMessage || parsedMessage.length === 0) {\n return {\n isError: true,\n content: [{ type: 'text', text: 'Error: Failed to parse FIX string' }],\n };\n }\n\n return {\n content: [\n {\n type: 'text',\n text: `${parsedMessage[0].description}\n${parsedMessage[0].messageTypeDescription}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to parse FIX string'}`,\n },\n ],\n };\n }\n }\n\n case 'parseToJSON': {\n try {\n const { fixString } = validateArgs(args, parseToJSONInputSchema);\n const parsedMessage = this.parser?.parse(fixString);\n if (!parsedMessage || parsedMessage.length === 0) {\n return {\n isError: true,\n content: [{ type: 'text', text: 'Error: Failed to parse FIX string' }],\n };\n }\n\n return {\n content: [\n {\n type: 'text',\n text: `${parsedMessage[0].toFIXJSON()}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to parse FIX string'}`,\n },\n ],\n };\n }\n }\n\n case 'newOrderSingle': {\n try {\n const { clOrdID, handlInst, quantity, price, ordType, side, symbol, timeInForce } =\n validateArgs(args, newOrderSingleInputSchema);\n\n const response = new Promise((resolve) => {\n this.pendingRequests.set(clOrdID, resolve);\n });\n\n const order: Message | undefined = this.parser?.createMessage(\n new Field(Fields.MsgType, Messages.NewOrderSingle),\n new Field(Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),\n new Field(Fields.SenderCompID, this.parser?.sender),\n new Field(Fields.TargetCompID, this.parser?.target),\n new Field(Fields.SendingTime, this.parser?.getTimestamp()),\n new Field(Fields.ClOrdID, clOrdID),\n new Field(Fields.Side, side),\n new Field(Fields.Symbol, symbol),\n new Field(Fields.OrderQty, quantity),\n new Field(Fields.Price, price),\n new Field(Fields.OrdType, ordType),\n new Field(Fields.HandlInst, handlInst),\n new Field(Fields.TimeInForce, timeInForce),\n new Field(Fields.TransactTime, this.parser?.getTimestamp()),\n );\n\n if (!this.parser?.connected) {\n this.logger?.log({\n level: 'error',\n message: 'FIXParser (MCP): -- Not connected. Ignoring message.',\n });\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: 'Error: Not connected. Ignoring message.',\n },\n ],\n };\n }\n\n this.parser?.send(order!);\n this.logger?.log({\n level: 'info',\n message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${order?.description}`,\n });\n\n const fixData = await response;\n return {\n content: [\n {\n type: 'text',\n text: `Execution Report for order ${clOrdID}: ${JSON.stringify((fixData as Message).toFIXJSON())}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to create order'}`,\n },\n ],\n };\n }\n }\n\n case 'marketDataRequest': {\n try {\n const { mdUpdateType, symbol, mdReqID, subscriptionRequestType, mdEntryType } = validateArgs(\n args,\n marketDataRequestInputSchema,\n );\n\n const response = new Promise((resolve) => {\n this.pendingRequests.set(mdReqID, resolve);\n });\n\n const marketDataRequest = this.parser?.createMessage(\n new Field(Fields.MsgType, Messages.MarketDataRequest),\n new Field(Fields.SenderCompID, this.parser?.sender),\n new Field(Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),\n new Field(Fields.TargetCompID, this.parser?.target),\n new Field(Fields.SendingTime, this.parser?.getTimestamp()),\n new Field(Fields.MarketDepth, 0),\n new Field(Fields.MDUpdateType, mdUpdateType),\n new Field(Fields.NoRelatedSym, 1),\n new Field(Fields.Symbol, symbol),\n new Field(Fields.MDReqID, mdReqID),\n new Field(Fields.SubscriptionRequestType, subscriptionRequestType),\n new Field(Fields.NoMDEntryTypes, 1),\n new Field(Fields.MDEntryType, mdEntryType),\n );\n\n if (!this.parser?.connected) {\n this.logger?.log({\n level: 'error',\n message: 'FIXParser (MCP): -- Not connected. Ignoring message.',\n });\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: 'Error: Not connected. Ignoring message.',\n },\n ],\n };\n }\n\n this.parser?.send(marketDataRequest!);\n this.logger?.log({\n level: 'info',\n message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${marketDataRequest?.description}`,\n });\n\n const fixData = await response;\n\n return {\n content: [\n {\n type: 'text',\n text: `Market data for ${symbol}: ${JSON.stringify((fixData as Message).toFIXJSON())}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to request market data'}`,\n },\n ],\n };\n }\n }\n\n default:\n throw new Error(`Unknown tool: ${name}`);\n }\n });\n\n this.server.setRequestHandler(ListPromptsRequestSchema, async () => {\n return {\n prompts: [\n {\n name: 'parse',\n description: 'Parses a FIX message and describes it in plain language',\n arguments: [\n {\n name: 'fixString',\n description: 'FIX message string to parse',\n required: true,\n },\n ],\n },\n {\n name: 'parseToJSON',\n description: 'Parses a FIX message into JSON',\n arguments: [\n {\n name: 'fixString',\n description: 'FIX message string to parse',\n required: true,\n },\n ],\n },\n {\n name: 'newOrderSingle',\n description: 'Creates and sends a New Order Single',\n arguments: [\n {\n name: 'clOrdID',\n description: 'Client Order ID',\n required: true,\n },\n {\n name: 'handlInst',\n description: 'Handling instruction',\n required: false,\n },\n {\n name: 'quantity',\n description: 'Order quantity',\n required: true,\n },\n {\n name: 'price',\n description: 'Order price',\n required: true,\n },\n {\n name: 'ordType',\n description: 'Order type',\n required: false,\n },\n {\n name: 'side',\n description:\n 'Order side (1=Buy, 2=Sell, 3=BuyMinus, 4=SellPlus, 5=SellShort, 6=SellShortExempt, 7=Undisclosed, 8=Cross, 9=CrossShort, A=CrossShortExempt, B=AsDefined, C=Opposite, D=Subscribe, E=Redeem, F=Lend, G=Borrow, H=SellUndisclosed)',\n required: true,\n },\n {\n name: 'symbol',\n description: 'Trading symbol',\n required: true,\n },\n {\n name: 'timeInForce',\n description: 'Time in force',\n required: false,\n },\n ],\n },\n {\n name: 'marketDataRequest',\n description: 'Sends a request for Market Data with the given symbol',\n arguments: [\n {\n name: 'mdUpdateType',\n description: 'Market data update type',\n required: false,\n },\n {\n name: 'symbol',\n description: 'Trading symbol',\n required: true,\n },\n {\n name: 'mdReqID',\n description: 'Market data request ID',\n required: true,\n },\n {\n name: 'subscriptionRequestType',\n description: 'Subscription request type',\n required: false,\n },\n {\n name: 'mdEntryType',\n description: 'Market data entry type',\n required: false,\n },\n ],\n },\n ],\n };\n });\n\n // Handler for getting specific prompts\n this.server.setRequestHandler(GetPromptRequestSchema, async (request) => {\n const { name, arguments: args } = request.params;\n\n switch (name) {\n case 'parse': {\n const fixString = args?.fixString || '';\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: `Please parse and explain this FIX message: ${fixString}`,\n },\n },\n ],\n };\n }\n\n case 'parseToJSON': {\n const fixString = args?.fixString || '';\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: `Please parse the FIX message to JSON: ${fixString}`,\n },\n },\n ],\n };\n }\n\n case 'newOrderSingle': {\n const { clOrdID, handlInst, quantity, price, ordType, side, symbol, timeInForce } = args || {};\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: [\n 'Create a New Order Single FIX message with the following parameters:',\n `- ClOrdID: ${clOrdID}`,\n `- HandlInst: ${handlInst ?? '3'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '1' for Manual, '2' for Automated, '3' for AutomatedNoIntervention)`,\n `- Quantity: ${quantity}`,\n `- Price: ${price}`,\n `- OrdType: ${ordType ?? '1'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '1' for Market, '2' for Limit, '3' for Stop)`,\n `- Side: ${side} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '1' for Buy, '2' for Sell)`,\n `- Symbol: ${symbol}`,\n `- TimeInForce: ${timeInForce ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for Day, '1' for Good Till Cancel, '2' for At Opening, '3' for Immediate or Cancel, '4' for Fill or Kill, '5' for Good Till Crossing, '6' for Good Till Date)`,\n '',\n 'Format the response as a JSON object with FIX tag numbers as keys and their corresponding values.',\n '',\n 'Note: For the Side parameter, always use the numeric/alphabetic value (e.g., \"1\" for Buy, \"2\" for Sell) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the HandlInst parameter, always use the numeric/alphabetic value (e.g., \"1\" for Manual, \"2\" for Automated, \"3\" for AutomatedNoIntervention) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the OrdType parameter, always use the numeric/alphabetic value (e.g., \"1\" for Market, \"2\" for Limit, \"3\" for Stop) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the TimeInForce parameter, always use the numeric/alphabetic value (e.g., \"0\" for Day, \"1\" for Good Till Cancel, \"2\" for At Opening) as defined in the FIX protocol, not the descriptive name.',\n ].join('\\n'),\n },\n },\n ],\n };\n }\n\n case 'marketDataRequest': {\n const { mdUpdateType, symbol, mdReqID, subscriptionRequestType, mdEntryType } = args || {};\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: [\n 'Create a Market Data Request FIX message with the following parameters:',\n `- MDUpdateType: ${mdUpdateType ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for FullRefresh, '1' for IncrementalRefresh)`,\n `- Symbol: ${symbol}`,\n `- MDReqID: ${mdReqID}`,\n `- SubscriptionRequestType: ${subscriptionRequestType ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for Snapshot + Updates, '1' for Snapshot, '2' for Unsubscribe)`,\n `- MDEntryType: ${mdEntryType ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for Bid, '1' for Offer, '2' for Trade, '3' for Index Value, '4' for Opening Price)`,\n '',\n 'Format the response as a JSON object with FIX tag numbers as keys and their corresponding values.',\n '',\n 'Note: For the MDUpdateType parameter, always use the numeric/alphabetic value (e.g., \"0\" for FullRefresh, \"1\" for IncrementalRefresh) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the SubscriptionRequestType parameter, always use the numeric/alphabetic value (e.g., \"0\" for Snapshot + Updates, \"1\" for Snapshot, \"2\" for Unsubscribe) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the MDEntryType parameter, always use the numeric/alphabetic value (e.g., \"0\" for Bid, \"1\" for Offer, \"2\" for Trade, \"3\" for Index Value, \"4\" for Opening Price) as defined in the FIX protocol, not the descriptive name.',\n ].join('\\n'),\n },\n },\n ],\n };\n }\n\n default:\n throw new Error(`Unknown prompt: ${name}`);\n }\n });\n\n process.on('SIGINT', async () => {\n await this.server.close();\n process.exit(0);\n });\n }\n}\n"],
5
- "mappings": "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",
4
+ "sourcesContent": ["import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport {\n CallToolRequestSchema,\n GetPromptRequestSchema,\n ListPromptsRequestSchema,\n ListResourcesRequestSchema,\n ListToolsRequestSchema,\n} from '@modelcontextprotocol/sdk/types.js';\n\nimport { Field, Fields, type IFIXParser, type Message, Messages } from 'fixparser';\nimport type { IPlugin } from 'fixparser-common';\nimport type { PluginOptions } from './PluginOptions';\n\n// Define JSON Schemas\nconst parseInputSchema = {\n type: 'object',\n properties: {\n fixString: {\n type: 'string',\n description: 'FIX message string to parse',\n },\n },\n required: ['fixString'],\n};\n\nconst parseToJSONInputSchema = {\n type: 'object',\n properties: {\n fixString: {\n type: 'string',\n description: 'FIX message string to parse',\n },\n },\n required: ['fixString'],\n};\n\nconst newOrderSingleInputSchema = {\n type: 'object',\n properties: {\n clOrdID: {\n type: 'string',\n description: 'Client Order ID',\n },\n handlInst: {\n type: 'string',\n enum: ['1', '2', '3'],\n description:\n 'Handling instruction (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"1\" for Manual, \"2\" for Automated, \"3\" for AutomatedNoIntervention)',\n },\n quantity: {\n type: 'number',\n description: 'Order quantity',\n },\n price: {\n type: 'number',\n description: 'Order price',\n },\n ordType: {\n type: 'string',\n enum: [\n '1',\n '2',\n '3',\n '4',\n '5',\n '6',\n '7',\n '8',\n '9',\n 'A',\n 'B',\n 'C',\n 'D',\n 'E',\n 'F',\n 'G',\n 'H',\n 'I',\n 'J',\n 'K',\n 'L',\n 'M',\n 'P',\n 'Q',\n 'R',\n 'S',\n ],\n description:\n 'Order type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"1\" for Market, \"2\" for Limit, \"3\" for Stop)',\n },\n side: {\n type: 'string',\n enum: ['1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],\n description:\n 'Order side (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"1\" for Buy, \"2\" for Sell, \"3\" for BuyMinus, \"4\" for SellPlus, \"5\" for SellShort, \"6\" for SellShortExempt, \"7\" for Undisclosed, \"8\" for Cross, \"9\" for CrossShort, \"A\" for CrossShortExempt, \"B\" for AsDefined, \"C\" for Opposite, \"D\" for Subscribe, \"E\" for Redeem, \"F\" for Lend, \"G\" for Borrow, \"H\" for SellUndisclosed)',\n },\n symbol: {\n type: 'string',\n description: 'Trading symbol',\n },\n timeInForce: {\n type: 'string',\n enum: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C'],\n description:\n 'Time in force (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for Day, \"1\" for Good Till Cancel, \"2\" for At Opening, \"3\" for Immediate or Cancel, \"4\" for Fill or Kill, \"5\" for Good Till Crossing, \"6\" for Good Till Date)',\n },\n },\n required: ['clOrdID', 'quantity', 'price', 'side', 'symbol', 'handlInst', 'ordType', 'timeInForce'],\n};\n\nconst marketDataRequestInputSchema = {\n type: 'object',\n properties: {\n mdUpdateType: {\n type: 'string',\n enum: ['0', '1'],\n description:\n 'Market data update type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for FullRefresh, \"1\" for IncrementalRefresh)',\n },\n symbol: {\n type: 'string',\n description: 'Trading symbol',\n },\n mdReqID: {\n type: 'string',\n description: 'Market data request ID',\n },\n subscriptionRequestType: {\n type: 'string',\n enum: ['0', '1', '2'],\n description:\n 'Subscription request type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for Snapshot + Updates, \"1\" for Snapshot, \"2\" for Unsubscribe)',\n },\n mdEntryType: {\n type: 'string',\n enum: [\n '0',\n '1',\n '2',\n '3',\n '4',\n '5',\n '6',\n '7',\n '8',\n '9',\n 'A',\n 'B',\n 'C',\n 'D',\n 'E',\n 'F',\n 'G',\n 'H',\n 'J',\n 'K',\n 'L',\n 'M',\n 'N',\n 'O',\n 'P',\n 'Q',\n 'S',\n 'R',\n 'T',\n 'U',\n 'V',\n 'W',\n 'X',\n 'Y',\n 'Z',\n 'a',\n 'b',\n 'c',\n 'd',\n 'e',\n 'g',\n 'h',\n 'i',\n 't',\n ],\n description:\n 'Market data entry type (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use \"0\" for Bid, \"1\" for Offer, \"2\" for Trade, \"3\" for Index Value, \"4\" for Opening Price)',\n },\n },\n required: ['symbol', 'mdReqID'],\n};\n\nexport class MCPLocal implements IPlugin<IFIXParser> {\n // private logger: Logger | undefined;\n private parser: IFIXParser | undefined;\n private server: Server = new Server(\n {\n name: 'fixparser',\n version: '1.0.0',\n },\n {\n capabilities: {\n tools: {},\n prompts: {},\n resources: {},\n },\n },\n );\n private transport: StdioServerTransport = new StdioServerTransport();\n private onReady: (() => void) | undefined = undefined;\n\n private pendingRequests: Map<string, (data: Message) => void> = new Map();\n\n constructor({ logger, onReady }: PluginOptions) {\n if (onReady) this.onReady = onReady;\n }\n\n public async register(parser: IFIXParser): Promise<void> {\n this.parser = parser;\n this.parser.addOnMessageCallback((message: Message) => {\n // this.logger?.log({\n // level: 'info',\n // message: `FIXParser (MCP): (${parser.protocol?.toUpperCase()}): << received ${message.description}`,\n // });\n const msgType = message.messageType;\n if (\n msgType === Messages.MarketDataSnapshotFullRefresh ||\n msgType === Messages.ExecutionReport ||\n msgType === Messages.Reject\n ) {\n const idField =\n msgType === Messages.MarketDataSnapshotFullRefresh\n ? message.getField(Fields.MDReqID)\n : msgType === Messages.Reject\n ? message.getField(Fields.RefSeqNum)\n : message.getField(Fields.ClOrdID);\n if (idField) {\n const id = idField.value;\n if (typeof id === 'string' || typeof id === 'number') {\n // For Reject messages, check if it's related to a New Order Single\n if (msgType === Messages.Reject) {\n const refMsgType = message.getField(Fields.RefMsgType);\n if (refMsgType && refMsgType.value === Messages.NewOrderSingle) {\n const callback = this.pendingRequests.get(String(id));\n if (callback) {\n callback(message);\n this.pendingRequests.delete(String(id));\n }\n }\n } else {\n const callback = this.pendingRequests.get(String(id));\n if (callback) {\n callback(message);\n this.pendingRequests.delete(String(id));\n }\n }\n }\n }\n }\n });\n\n this.addWorkflows();\n\n await this.server.connect(this.transport);\n\n if (this.onReady) {\n this.onReady();\n }\n }\n\n private addWorkflows() {\n if (!this.parser) {\n // this.logger?.log({\n // level: 'error',\n // message: 'FIXParser (MCP): -- FIXParser instance not initialized. Ignoring setup of workflows...',\n // });\n return;\n }\n\n if (!this.server) {\n // this.logger?.log({\n // level: 'error',\n // message: 'FIXParser (MCP): -- MCP Server not initialized. Ignoring setup of workflows...',\n // });\n return;\n }\n\n // Helper function to validate and parse arguments\n const validateArgs = (args: any, schema: any): any => {\n // Basic validation - in a real implementation, you might want to use a proper JSON Schema validator\n const result: any = {};\n\n for (const [key, propSchema] of Object.entries(schema.properties || {})) {\n const prop = propSchema as any;\n const value = args?.[key];\n\n if (prop.required && (value === undefined || value === null)) {\n throw new Error(`Required property '${key}' is missing`);\n }\n\n if (value !== undefined) {\n // Apply defaults\n result[key] = value;\n } else if (prop.default !== undefined) {\n result[key] = prop.default;\n }\n }\n\n return result;\n };\n\n // Empty handler for resources\n this.server.setRequestHandler(ListResourcesRequestSchema, async () => {\n return {\n resources: [],\n };\n });\n\n // Handler for listing available tools\n this.server.setRequestHandler(ListToolsRequestSchema, async () => {\n return {\n tools: [\n {\n name: 'parse',\n description: 'Parses a FIX message and describes it in plain language',\n inputSchema: parseInputSchema,\n },\n {\n name: 'parseToJSON',\n description: 'Parses a FIX message into JSON',\n inputSchema: parseToJSONInputSchema,\n },\n {\n name: 'newOrderSingle',\n description: 'Creates and sends a New Order Single',\n inputSchema: newOrderSingleInputSchema,\n },\n {\n name: 'marketDataRequest',\n description: 'Sends a request for Market Data with the given symbol',\n inputSchema: marketDataRequestInputSchema,\n },\n ],\n };\n });\n\n // Handler for tool calls\n this.server.setRequestHandler(CallToolRequestSchema, async (request) => {\n const { name, arguments: args } = request.params;\n\n switch (name) {\n case 'parse': {\n try {\n const { fixString } = validateArgs(args, parseInputSchema);\n const parsedMessage: Message[] | undefined = this.parser?.parse(fixString);\n if (!parsedMessage || parsedMessage.length === 0) {\n return {\n isError: true,\n content: [{ type: 'text', text: 'Error: Failed to parse FIX string' }],\n };\n }\n\n return {\n content: [\n {\n type: 'text',\n text: `${parsedMessage[0].description}\n${parsedMessage[0].messageTypeDescription}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to parse FIX string'}`,\n },\n ],\n };\n }\n }\n\n case 'parseToJSON': {\n try {\n const { fixString } = validateArgs(args, parseToJSONInputSchema);\n const parsedMessage = this.parser?.parse(fixString);\n if (!parsedMessage || parsedMessage.length === 0) {\n return {\n isError: true,\n content: [{ type: 'text', text: 'Error: Failed to parse FIX string' }],\n };\n }\n\n return {\n content: [\n {\n type: 'text',\n text: `${parsedMessage[0].toFIXJSON()}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to parse FIX string'}`,\n },\n ],\n };\n }\n }\n\n case 'newOrderSingle': {\n try {\n const { clOrdID, handlInst, quantity, price, ordType, side, symbol, timeInForce } =\n validateArgs(args, newOrderSingleInputSchema);\n\n const response = new Promise((resolve) => {\n this.pendingRequests.set(clOrdID, resolve);\n });\n\n const order: Message | undefined = this.parser?.createMessage(\n new Field(Fields.MsgType, Messages.NewOrderSingle),\n new Field(Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),\n new Field(Fields.SenderCompID, this.parser?.sender),\n new Field(Fields.TargetCompID, this.parser?.target),\n new Field(Fields.SendingTime, this.parser?.getTimestamp()),\n new Field(Fields.ClOrdID, clOrdID),\n new Field(Fields.Side, side),\n new Field(Fields.Symbol, symbol),\n new Field(Fields.OrderQty, quantity),\n new Field(Fields.Price, price),\n new Field(Fields.OrdType, ordType),\n new Field(Fields.HandlInst, handlInst),\n new Field(Fields.TimeInForce, timeInForce),\n new Field(Fields.TransactTime, this.parser?.getTimestamp()),\n );\n\n if (!this.parser?.connected) {\n // this.logger?.log({\n // level: 'error',\n // message: 'FIXParser (MCP): -- Not connected. Ignoring message.',\n // });\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: 'Error: Not connected. Ignoring message.',\n },\n ],\n };\n }\n\n this.parser?.send(order!);\n // this.logger?.log({\n // level: 'info',\n // message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${order?.description}`,\n // });\n\n const fixData = await response;\n\n return {\n content: [\n {\n type: 'text',\n text:\n (fixData as Message).messageType === Messages.Reject\n ? `Reject message for order ${clOrdID}: ${JSON.stringify((fixData as Message).toFIXJSON())}`\n : `Execution Report for order ${clOrdID}: ${JSON.stringify((fixData as Message).toFIXJSON())}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to create order'}`,\n },\n ],\n };\n }\n }\n\n case 'marketDataRequest': {\n try {\n const { mdUpdateType, symbol, mdReqID, subscriptionRequestType, mdEntryType } = validateArgs(\n args,\n marketDataRequestInputSchema,\n );\n\n const response = new Promise((resolve) => {\n this.pendingRequests.set(mdReqID, resolve);\n });\n\n const marketDataRequest = this.parser?.createMessage(\n new Field(Fields.MsgType, Messages.MarketDataRequest),\n new Field(Fields.SenderCompID, this.parser?.sender),\n new Field(Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),\n new Field(Fields.TargetCompID, this.parser?.target),\n new Field(Fields.SendingTime, this.parser?.getTimestamp()),\n new Field(Fields.MarketDepth, 0),\n new Field(Fields.MDUpdateType, mdUpdateType),\n new Field(Fields.NoRelatedSym, 1),\n new Field(Fields.Symbol, symbol),\n new Field(Fields.MDReqID, mdReqID),\n new Field(Fields.SubscriptionRequestType, subscriptionRequestType),\n new Field(Fields.NoMDEntryTypes, 1),\n new Field(Fields.MDEntryType, mdEntryType),\n );\n\n if (!this.parser?.connected) {\n // this.logger?.log({\n // level: 'error',\n // message: 'FIXParser (MCP): -- Not connected. Ignoring message.',\n // });\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: 'Error: Not connected. Ignoring message.',\n },\n ],\n };\n }\n\n this.parser?.send(marketDataRequest!);\n // this.logger?.log({\n // level: 'info',\n // message: `FIXParser (MCP): (${this.parser?.protocol?.toUpperCase()}): >> sent ${marketDataRequest?.description}`,\n // });\n\n const fixData = await response;\n\n return {\n content: [\n {\n type: 'text',\n text: `Market data for ${symbol}: ${JSON.stringify((fixData as Message).toFIXJSON())}`,\n },\n ],\n };\n } catch (error) {\n return {\n isError: true,\n content: [\n {\n type: 'text',\n text: `Error: ${error instanceof Error ? error.message : 'Failed to request market data'}`,\n },\n ],\n };\n }\n }\n\n default:\n throw new Error(`Unknown tool: ${name}`);\n }\n });\n\n this.server.setRequestHandler(ListPromptsRequestSchema, async () => {\n return {\n prompts: [\n {\n name: 'parse',\n description: 'Parses a FIX message and describes it in plain language',\n arguments: [\n {\n name: 'fixString',\n description: 'FIX message string to parse',\n required: true,\n },\n ],\n },\n {\n name: 'parseToJSON',\n description: 'Parses a FIX message into JSON',\n arguments: [\n {\n name: 'fixString',\n description: 'FIX message string to parse',\n required: true,\n },\n ],\n },\n {\n name: 'newOrderSingle',\n description: 'Creates and sends a New Order Single',\n arguments: [\n {\n name: 'clOrdID',\n description: 'Client Order ID',\n required: true,\n },\n {\n name: 'handlInst',\n description: 'Handling instruction',\n required: true,\n },\n {\n name: 'quantity',\n description: 'Order quantity',\n required: true,\n },\n {\n name: 'price',\n description: 'Order price',\n required: true,\n },\n {\n name: 'ordType',\n description: 'Order type',\n required: true,\n },\n {\n name: 'side',\n description:\n 'Order side (1=Buy, 2=Sell, 3=BuyMinus, 4=SellPlus, 5=SellShort, 6=SellShortExempt, 7=Undisclosed, 8=Cross, 9=CrossShort, A=CrossShortExempt, B=AsDefined, C=Opposite, D=Subscribe, E=Redeem, F=Lend, G=Borrow, H=SellUndisclosed)',\n required: true,\n },\n {\n name: 'symbol',\n description: 'Trading symbol',\n required: true,\n },\n {\n name: 'timeInForce',\n description: 'Time in force',\n required: true,\n },\n ],\n },\n {\n name: 'marketDataRequest',\n description: 'Sends a request for Market Data with the given symbol',\n arguments: [\n {\n name: 'mdUpdateType',\n description: 'Market data update type',\n required: true,\n },\n {\n name: 'symbol',\n description: 'Trading symbol',\n required: true,\n },\n {\n name: 'mdReqID',\n description: 'Market data request ID',\n required: true,\n },\n {\n name: 'subscriptionRequestType',\n description: 'Subscription request type',\n required: true,\n },\n {\n name: 'mdEntryType',\n description: 'Market data entry type',\n required: true,\n },\n ],\n },\n ],\n };\n });\n\n // Handler for getting specific prompts\n this.server.setRequestHandler(GetPromptRequestSchema, async (request) => {\n const { name, arguments: args } = request.params;\n\n switch (name) {\n case 'parse': {\n const fixString = args?.fixString || '';\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: `Please parse and explain this FIX message: ${fixString}`,\n },\n },\n ],\n };\n }\n\n case 'parseToJSON': {\n const fixString = args?.fixString || '';\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: `Please parse the FIX message to JSON: ${fixString}`,\n },\n },\n ],\n };\n }\n\n case 'newOrderSingle': {\n const { clOrdID, handlInst, quantity, price, ordType, side, symbol, timeInForce } = args || {};\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: [\n 'Create a New Order Single FIX message with the following parameters:',\n `- ClOrdID: ${clOrdID}`,\n `- HandlInst: ${handlInst ?? '3'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '1' for Manual, '2' for Automated, '3' for AutomatedNoIntervention)`,\n `- Quantity: ${quantity}`,\n `- Price: ${price}`,\n `- OrdType: ${ordType ?? '1'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '1' for Market, '2' for Limit, '3' for Stop)`,\n `- Side: ${side} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '1' for Buy, '2' for Sell)`,\n `- Symbol: ${symbol}`,\n `- TimeInForce: ${timeInForce ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for Day, '1' for Good Till Cancel, '2' for At Opening, '3' for Immediate or Cancel, '4' for Fill or Kill, '5' for Good Till Crossing, '6' for Good Till Date)`,\n '',\n 'Note: For the OrdType parameter, always use the numeric/alphabetic value (e.g., \"1\" for Market, \"2\" for Limit, \"3\" for Stop) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the TimeInForce parameter, always use the numeric/alphabetic value (e.g., \"0\" for Day, \"1\" for Good Till Cancel, \"2\" for At Opening) as defined in the FIX protocol, not the descriptive name.',\n '',\n 'IMPORTANT: All parameters must be set before sending the order. Missing or invalid parameters will result in a Reject message.',\n '',\n 'IMPORTANT: The response will be either:',\n '1. An Execution Report (MsgType=8) if the order was successfully placed',\n '2. A Reject message (MsgType=3) if the order failed to execute (e.g., due to missing or invalid parameters)',\n ].join('\\n'),\n },\n },\n ],\n };\n }\n\n case 'marketDataRequest': {\n const { mdUpdateType, symbol, mdReqID, subscriptionRequestType, mdEntryType } = args || {};\n return {\n messages: [\n {\n role: 'user',\n content: {\n type: 'text',\n text: [\n 'Create a Market Data Request FIX message with the following parameters:',\n `- MDUpdateType: ${mdUpdateType ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for FullRefresh, '1' for IncrementalRefresh)`,\n `- Symbol: ${symbol}`,\n `- MDReqID: ${mdReqID}`,\n `- SubscriptionRequestType: ${subscriptionRequestType ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for Snapshot + Updates, '1' for Snapshot, '2' for Unsubscribe)`,\n `- MDEntryType: ${mdEntryType ?? '0'} (IMPORTANT: Use the numeric/alphabetic value, not the descriptive name. For example, use '0' for Bid, '1' for Offer, '2' for Trade, '3' for Index Value, '4' for Opening Price)`,\n '',\n 'Format the response as a JSON object with FIX tag numbers as keys and their corresponding values.',\n '',\n 'Note: For the MDUpdateType parameter, always use the numeric/alphabetic value (e.g., \"0\" for FullRefresh, \"1\" for IncrementalRefresh) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the SubscriptionRequestType parameter, always use the numeric/alphabetic value (e.g., \"0\" for Snapshot + Updates, \"1\" for Snapshot, \"2\" for Unsubscribe) as defined in the FIX protocol, not the descriptive name.',\n 'Note: For the MDEntryType parameter, always use the numeric/alphabetic value (e.g., \"0\" for Bid, \"1\" for Offer, \"2\" for Trade, \"3\" for Index Value, \"4\" for Opening Price) as defined in the FIX protocol, not the descriptive name.',\n ].join('\\n'),\n },\n },\n ],\n };\n }\n\n default:\n throw new Error(`Unknown prompt: ${name}`);\n }\n });\n\n process.on('SIGINT', async () => {\n await this.server.close();\n process.exit(0);\n });\n }\n}\n"],
5
+ "mappings": "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",
6
6
  "names": []
7
7
  }