Tradovate MCP Server

by alexanimal
Verified
{ "name": "tradovate-mcp-server", "version": "0.1.0", "description": "An MCP Server for Tradovate Tools", "private": true, "license": "MIT", "type": "module", "bin": { "tradovate-mcp-server": "./build/src/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/src/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/src/index.js", "test": "jest --config jest.config.cjs", "test:watch": "jest --config jest.config.cjs --watch", "test:coverage": "jest --config jest.config.cjs --coverage", "start": "node build/src/index.js" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "axios": "^1.6.7", "dotenv": "^16.4.5" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.24", "cross-env": "^7.0.3", "jest": "^29.7.0", "ts-jest": "^29.1.2", "typescript": "^5.3.3" } }