Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Tradovate MCP Server
by
alexanimal
Verified
GitHub
Finance
JavaScript
MIT License
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
tradovate-mcp-server
.github
src
tests
claude_desktop_config.json
.codecov.yml
Dockerfile
.env.example
.gitignore
jest.config.cjs
jest.setup.cjs
LICENSE
package.json
package-lock.json
README.md
smithery.yaml
tsconfig.json
{ "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" } }