BSC MCP Server

by ArcReactor9
Verified
{ "name": "mcp-bsc", "version": "1.0.0", "main": "dist/index.js", "type": "module", "scripts": { "build": "tsc", "start": "node dist/index.js", "start:http": "node dist/server-http.js", "client": "node dist/client-example.js", "client:http": "node dist/client-http-example.js", "client:simple": "node dist/simple-http-client.js", "dev": "ts-node --esm src/index.ts", "dev:http": "ts-node --esm src/server-http.ts" }, "keywords": ["mcp", "blockchain", "bsc", "binance-smart-chain", "llm"], "author": "", "license": "ISC", "description": "MCP server for interacting with Binance Smart Chain", "dependencies": { "@modelcontextprotocol/sdk": "latest", "cors": "^2.8.5", "ethers": "^6.9.0", "express": "^4.18.2", "node-fetch": "^2.6.9", "zod": "^3.22.4" }, "devDependencies": { "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/node": "^20.10.0", "@types/node-fetch": "^2.6.9", "ts-node": "^10.9.1", "typescript": "^5.3.2" } }