Binance MCP Server

{ "name": "binance-mcp-server", "version": "0.1.0", "description": "Binance market data provider with WebSocket support", "private": true, "type": "module", "bin": { "binance-mcp-server": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "rimraf build && tsc -p tsconfig.json", "postbuild": "chmod +x build/index.js", "prepare": "npm run build", "watch": "tsc --watch -p tsconfig.json", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "start": "node build/index.js", "test": "jest --config=jest.config.js", "test:watch": "jest --watch --config=jest.config.js", "test:coverage": "jest --coverage --config=jest.config.js", "type-check": "tsc --noEmit -p tsconfig.test.json", "lint": "eslint 'src/**/*.{js,ts}'" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "@types/ws": "^8.5.10", "axios": "^1.6.7", "ws": "^8.16.0", "winston": "^3.11.0" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.12", "@types/node": "^20.11.24", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.57.0", "jest": "^29.7.0", "rimraf": "^5.0.5", "ts-jest": "^29.1.2", "typescript": "^5.3.3" } }