spb/hfmarketdata
Public
Open high-frequency market data platform — FirstRate full-history downloader, DuckDB/Parquet lake, open REST API and React docs platform (www.hfmarketdata.io)
JavaScript 53.7%
Python 38.3%
CSS 4.6%
TypeScript 3.1%
1{2 "name": "hfmarketdata-mcp",3 "version": "1.0.0",4 "description": "Official MCP server for HF Market Data (www.hfmarketdata.io): stocks, ETFs, futures (contracts, continuous, term structure), options chains, SEC fundamentals and a live filings stream — for Claude Code, Cursor, Codex and any MCP client.",5 "license": "MIT",6 "author": "Simon-Pierre Boucher <contact@spboucher.ai>",7 "homepage": "https://www.hfmarketdata.io/integrations/mcp",8 "repository": {9 "type": "git",10 "url": "https://git.spboucher.ai/hfmarketdata.git",11 "directory": "mcp"12 },13 "keywords": [14 "mcp",15 "model-context-protocol",16 "market-data",17 "futures",18 "options",19 "fundamentals",20 "sec",21 "edgar",22 "claude",23 "cursor",24 "codex",25 "finance"26 ],27 "type": "module",28 "bin": {29 "hfmarketdata-mcp": "dist/index.js"30 },31 "main": "dist/server.js",32 "types": "dist/server.d.ts",33 "exports": {34 ".": {35 "types": "./dist/server.d.ts",36 "import": "./dist/server.js"37 }38 },39 "files": [40 "dist",41 "README.md",42 "LICENSE"43 ],44 "engines": {45 "node": ">=20"46 },47 "scripts": {48 "build": "tsc -p tsconfig.json",49 "prepack": "npm run build",50 "test": "vitest run",51 "test:watch": "vitest",52 "typecheck": "tsc -p tsconfig.json --noEmit",53 "start": "node dist/index.js",54 "inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js"55 },56 "dependencies": {57 "@modelcontextprotocol/sdk": "^1.30.0",58 "zod": "^4.0.0"59 },60 "devDependencies": {61 "@types/node": "^22.0.0",62 "typescript": "^5.9.0",63 "vitest": "^3.2.0"64 }65}66