fixparser-plugin-mcp 9.1.7-28bfe28b → 9.1.7-2c6248d2
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/build/cjs/MCPLocal.js +30 -50
- package/build/cjs/MCPLocal.js.map +2 -2
- package/build/esm/MCPLocal.mjs +30 -50
- package/build/esm/MCPLocal.mjs.map +2 -2
- package/build-examples/cjs/example_mcp_local.js +4 -3
- package/build-examples/cjs/example_mcp_local.js.map +3 -3
- package/build-examples/esm/example_mcp_local.mjs +4 -3
- package/build-examples/esm/example_mcp_local.mjs.map +3 -3
- package/package.json +7 -6
- package/types/MCPLocal.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fixparser-plugin-mcp",
|
|
3
|
-
"version": "9.1.7-
|
|
3
|
+
"version": "9.1.7-2c6248d2",
|
|
4
4
|
"description": "FIXParser MCP plugin (Local / Remote)",
|
|
5
5
|
"files": [
|
|
6
6
|
"./build/",
|
|
@@ -34,8 +34,9 @@
|
|
|
34
34
|
"@modelcontextprotocol/sdk": "1.12.0",
|
|
35
35
|
"body-parser": "2.2.0",
|
|
36
36
|
"express": "5.1.0",
|
|
37
|
-
"fixparser": "
|
|
38
|
-
"fixparser-common": "
|
|
37
|
+
"fixparser": "next",
|
|
38
|
+
"fixparser-common": "next",
|
|
39
|
+
"fixparser-plugin-log-console": "next",
|
|
39
40
|
"zod": "3.25.27",
|
|
40
41
|
"zod-to-json-schema": "3.24.5"
|
|
41
42
|
},
|
|
@@ -45,10 +46,10 @@
|
|
|
45
46
|
"AI Agent",
|
|
46
47
|
"agent",
|
|
47
48
|
"AI",
|
|
48
|
-
"MCP Server",
|
|
49
49
|
"Model Context Protocol",
|
|
50
|
-
"
|
|
51
|
-
"LLM"
|
|
50
|
+
"MCP Server",
|
|
51
|
+
"LLM",
|
|
52
|
+
"AI Trading Agent"
|
|
52
53
|
],
|
|
53
54
|
"homepage": "https://fixparser.dev",
|
|
54
55
|
"license": "LICENSE.md",
|
package/types/MCPLocal.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { type IFIXParser } from 'fixparser';
|
|
|
2
2
|
import type { IPlugin } from 'fixparser-common';
|
|
3
3
|
import type { PluginOptions } from './PluginOptions';
|
|
4
4
|
export declare class MCPLocal implements IPlugin<IFIXParser> {
|
|
5
|
-
private logger;
|
|
6
5
|
private parser;
|
|
7
6
|
private server;
|
|
8
7
|
private transport;
|