{ "name": "robinhood-mcp", "mcpName": "io.github.nirholas/robinhood-mcp", "version": "0.1.1", "description": "Model Context Protocol servers for the official Robinhood Crypto Trading API: a read-only server (quotes, holdings, orders, account) and an explicitly opt-in trading server with hard spend caps and a confirm gate. Ed25519 request signing verified against Robinhood's own key material.", "keywords": [ "mcp", "model-context-protocol", "robinhood", "robinhood-crypto", "crypto-trading-api", "trading", "ed25519", "ai-agents", "claude", "cursor" ], "license": "Apache-2.0", "author": "nirholas (https://x.com/nichxbt)", "repository": { "type": "git", "url": "git+https://github.com/nirholas/robinhood-mcp.git" }, "homepage": "https://github.com/nirholas/robinhood-mcp#readme", "bugs": { "url": "https://github.com/nirholas/robinhood-mcp/issues" }, "type": "module", "engines": { "node": ">=22.5.0" }, "bin": { "robinhood-mcp": "./dist/bin/data-server.js", "robinhood-mcp-trading": "./dist/bin/trading-server.js", "robinhood-keygen": "./dist/bin/keygen.js", "robinhood-mcp-daemon": "./dist/bin/daemon.js" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./data-server": "./dist/data-server.js", "./trading-server": "./dist/trading-server.js", "./package.json": "./package.json" }, "files": [ "dist", "server.json", "README.md", "LICENSE" ], "scripts": { "build": "tsup", "typecheck": "tsc --noEmit", "dev:data": "tsx src/bin/data-server.ts", "dev:trading": "tsx src/bin/trading-server.ts", "keygen": "tsx src/bin/keygen.ts", "start": "node dist/bin/data-server.js", "test": "vitest run", "test:live": "vitest run -c vitest.live.config.ts --testTimeout 120000", "prepublishOnly": "npm run build && npm test", "dev:daemon": "tsx src/bin/daemon.ts", "daemon": "node dist/bin/daemon.js", "smoke": "node scripts/smoke.mjs" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "zod": "^3.25.76" }, "devDependencies": { "@types/node": "^24.0.0", "tsup": "^8.5.0", "tsx": "^4.23.0", "typescript": "^5.9.0", "vitest": "^3.2.0" } }