fixparser-plugin-mcp 9.1.7-8db521e7 → 9.1.7-8faff314

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fixparser-plugin-mcp",
3
- "version": "9.1.7-8db521e7",
4
- "description": "FIXParser MCP plugin (Local / Remote)",
3
+ "version": "9.1.7-8faff314",
4
+ "description": "FIXParser MCP Plugin (Local/Remote)",
5
5
  "files": [
6
6
  "./build/",
7
7
  "./build-examples/",
@@ -37,8 +37,8 @@
37
37
  "fixparser": "next",
38
38
  "fixparser-common": "next",
39
39
  "fixparser-plugin-log-console": "next",
40
- "zod": "3.25.49",
41
- "zod-to-json-schema": "3.24.5"
40
+ "sharp": "0.34.2",
41
+ "zod": "3.25.62"
42
42
  },
43
43
  "keywords": [
44
44
  "FIXParser",
@@ -62,6 +62,6 @@
62
62
  }
63
63
  },
64
64
  "devDependencies": {
65
- "@types/express": "5.0.2"
65
+ "@types/express": "5.0.3"
66
66
  }
67
67
  }
@@ -7,6 +7,9 @@ export declare class MCPLocal implements IPlugin<IFIXParser> {
7
7
  private transport;
8
8
  private onReady;
9
9
  private pendingRequests;
10
+ private verifiedOrders;
11
+ private marketDataPrices;
12
+ private readonly MAX_PRICE_HISTORY;
10
13
  constructor({ logger, onReady }: PluginOptions);
11
14
  register(parser: IFIXParser): Promise<void>;
12
15
  private addWorkflows;