fixparser-plugin-mcp 9.1.7-ff7241ee → 9.2.0

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,10 +1,9 @@
1
1
  {
2
2
  "name": "fixparser-plugin-mcp",
3
- "version": "9.1.7-ff7241ee",
4
- "description": "FIXParser MCP plugin (Local/Remote)",
3
+ "version": "9.2.0",
4
+ "description": "FIXParser MCP Plugin (Local/Remote)",
5
5
  "files": [
6
6
  "./build/",
7
- "./build-examples/",
8
7
  "./types/",
9
8
  "./LICENSE.md"
10
9
  ],
@@ -15,29 +14,28 @@
15
14
  "url": "git+https://gitlab.com/logotype/fixparser.git"
16
15
  },
17
16
  "bin": {
18
- "fixparser-mcp-local": "build-examples/esm/example_mcp_local.mjs"
17
+ "fixparser-mcp-local": "build/esm/StdioServer.mjs"
19
18
  },
20
19
  "scripts": {
20
+ "start": "node -r dotenv/config build/esm/RemoteServer.mjs",
21
21
  "build": "npm run clean && npm run types && npm run build:main",
22
22
  "build:main": "node --experimental-strip-types -r ./../../esbuild-hook.ts ./scripts/build",
23
23
  "clean": "node --experimental-strip-types -r ./../../esbuild-hook.ts ./scripts/clean",
24
- "test": "echo 'No tests in the fixparser-plugin-mcp package'",
24
+ "test": "jest --ci --colors --detectOpenHandles --verbose=false",
25
25
  "types": "tsc --declaration --emitDeclarationOnly --stripInternal --declarationDir ./types",
26
- "example:mcp_local": "tsx examples/run-example.ts example_mcp_local.ts",
27
- "example:mcp_remote": "tsx examples/run-example.ts example_mcp_remote.ts",
28
- "example:mcp_remote_client": "tsx examples/run-example.ts example_mcp_remote_client.ts",
29
26
  "prepare": "husky",
30
27
  "upgrade-interactive": "ncu -u -t latest"
31
28
  },
32
29
  "author": "Victor Norgren",
33
30
  "dependencies": {
34
- "@modelcontextprotocol/sdk": "1.12.1",
31
+ "@modelcontextprotocol/sdk": "1.13.0",
35
32
  "body-parser": "2.2.0",
36
33
  "express": "5.1.0",
37
34
  "fixparser": "next",
38
35
  "fixparser-common": "next",
39
36
  "fixparser-plugin-log-console": "next",
40
- "zod": "3.25.62"
37
+ "quickchart-js": "3.1.3",
38
+ "zod": "3.25.67"
41
39
  },
42
40
  "keywords": [
43
41
  "FIXParser",
@@ -52,12 +50,12 @@
52
50
  ],
53
51
  "homepage": "https://fixparser.dev",
54
52
  "license": "LICENSE.md",
55
- "types": "./types/MCPLocal.d.ts",
53
+ "types": "./types/index.d.ts",
56
54
  "exports": {
57
55
  ".": {
58
- "types": "./types/MCPLocal.d.ts",
59
- "import": "./build/esm/MCPLocal.mjs",
60
- "require": "./build/cjs/MCPLocal.js"
56
+ "types": "./types/index.d.ts",
57
+ "import": "./build/esm/index.mjs",
58
+ "require": "./build/cjs/index.js"
61
59
  }
62
60
  },
63
61
  "devDependencies": {