fixparser-plugin-mcp
Version:
FIXParser MCP Plugin (Local/Remote)
66 lines (65 loc) • 2.01 kB
JSON
{
"name": "fixparser-plugin-mcp",
"version": "9.3.15",
"description": "FIXParser MCP Plugin (Local/Remote)",
"files": [
"./build/",
"./types/",
"./LICENSE.md",
"./README.md"
],
"main": "./build/cjs/MCPLocal.cjs",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/logotype/fixparser.git"
},
"bin": {
"fixparser-mcp-local": "build/esm/StdioServer.mjs"
},
"scripts": {
"start": "node -r dotenv/config build/esm/RemoteServer.mjs",
"build": "npm run clean && npm run types && npm run build:main",
"build:main": "node --experimental-strip-types -r ./../../esbuild-hook.ts ./scripts/build",
"clean": "node --experimental-strip-types -r ./../../esbuild-hook.ts ./scripts/clean",
"test": "jest --ci --colors --detectOpenHandles --verbose=false",
"types": "tsc --declaration --emitDeclarationOnly --stripInternal --declarationDir ./types",
"prepare": "husky",
"upgrade-interactive": "ncu -u -t latest"
},
"author": "Victor Norgren",
"dependencies": {
"@modelcontextprotocol/sdk": "1.23.0",
"body-parser": "2.2.1",
"express": "5.2.1",
"fixparser": "^9.3.0",
"fixparser-common": "^9.3.0",
"fixparser-plugin-log-console": "^9.3.0",
"quickchart-js": "3.1.3",
"zod": "^4.1.13"
},
"keywords": [
"FIXParser",
"MCP",
"AI Agent",
"agent",
"AI",
"Model Context Protocol",
"MCP Server",
"LLM",
"AI Trading Agent"
],
"homepage": "https://fixparser.dev",
"license": "LICENSE.md",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./build/esm/index.mjs",
"require": "./build/cjs/index.cjs"
}
},
"devDependencies": {
"@types/express": "5.0.6"
}
}