{ "name": "mcp-binance-connector", "version": "1.0.0", "description": "MCP Server for Binance trading operations via CCXT", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "ts-node-dev --respawn src/index.ts", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "typecheck": "tsc --noEmit", "health-check": "curl -s http://localhost:${PORT:-3606}/health || echo 'Server not running'" }, "keywords": [ "mcp", "model-context-protocol", "anthropic", "claude", "binance", "crypto", "trading", "ccxt" ], "author": "Trading Platform Trading Platform", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "ccxt": "^4.0.0", "dotenv": "^16.3.1", "express": "^4.18.2", "winston": "^3.11.0", "zod": "^3.22.4" }, "devDependencies": { "@types/express": "^4.17.21", "@types/jest": "^29.5.11", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0", "eslint": "^8.54.0", "jest": "^29.7.0", "ts-jest": "^29.1.1", "ts-node-dev": "^2.0.0", "typescript": "^5.3.0" }, "engines": { "node": ">=20.0.0" } }