package.json•1.07 kB
{
"name": "tavily-mcp-loadbalancer",
"version": "2.1.0",
"description": "Load-balanced Tavily MCP server with API key pool management",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"start-gateway": "tsx src/start.ts",
"start-sse": "tsx src/start.ts",
"build-and-start": "npm run build && npm run start-gateway"
},
"keywords": [
"mcp",
"tavily",
"load-balancer",
"api-pool"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eventsource": "^4.0.0",
"express": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0"
},
"bin": {
"tavily-mcp-lb": "./dist/index.js"
}
}