tradeblocks-mcp 3.0.0 → 3.0.2

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/manifest.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "manifest_version": "0.3",
3
3
  "name": "tradeblocks",
4
4
  "display_name": "TradeBlocks",
5
- "version": "3.0.0",
5
+ "version": "3.0.2",
6
6
  "description": "Options trading analysis - backtest stats, walk-forward analysis, Monte Carlo simulations, and risk metrics",
7
7
  "long_description": "TradeBlocks MCP server provides comprehensive options trading analysis capabilities. Import your trade logs and get detailed performance statistics, run walk-forward analysis to detect overfitting, perform Monte Carlo simulations for risk assessment, calculate optimal position sizing with Kelly criterion, and compare backtest results against actual trading performance. All analysis runs locally on your machine.",
8
8
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tradeblocks-mcp",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "MCP server for options trade analysis",
5
5
  "author": "David Romeo <davidmromeo@gmail.com>",
6
6
  "type": "module",
@@ -123,8 +123,9 @@
123
123
  }
124
124
  },
125
125
  "scripts": {
126
- "build": "tsup && node scripts/copy-provider-assets.mjs && npm run build:http-server && npm run fix-http-import",
126
+ "build": "tsup && node scripts/copy-provider-assets.mjs && npm run build:http-server && npm run build:iv-worker && npm run fix-http-import",
127
127
  "build:http-server": "esbuild src/http-server.ts --bundle --outfile=server/http-server.js --format=esm --platform=node --target=node18 --packages=external",
128
+ "build:iv-worker": "esbuild src/utils/iv-solver-worker.ts --bundle --outfile=server/iv-solver-worker.js --format=esm --platform=node --target=node18 --packages=external && esbuild src/utils/iv-solver-worker.ts --bundle --outfile=dist/iv-solver-worker.js --format=esm --platform=node --target=node18 --packages=external",
128
129
  "fix-http-import": "node -e \"const fs=require('fs');const f='server/index.js';let c=fs.readFileSync(f,'utf8');c=c.replace(/\\.\\/http-server-[A-Z0-9]+\\.js/g,'./http-server.js');fs.writeFileSync(f,c);\" && rm -f server/http-server-*.js server/http-server-*.map",
129
130
  "dev": "tsup --watch",
130
131
  "test": "NODE_OPTIONS='--experimental-vm-modules' jest",
@@ -151,6 +152,7 @@
151
152
  "@types/jest": "^30.0.0",
152
153
  "@types/node": "^25.9.3",
153
154
  "archiver": "^7.0.1",
155
+ "esbuild": "^0.27.2",
154
156
  "jest": "^30.3.0",
155
157
  "ts-jest": "^29.4.9",
156
158
  "tsup": "^8.4.0",