package.json•602 B
{
"name": "rabbitmq-mcp",
"version": "0.0.1",
"description": "rabbitmq-mcp MCP server",
"type": "module",
"bin": {
"rabbitmq-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && mcp-build",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"dependencies": {
"@types/amqplib": "^0.10.7",
"amqplib": "^0.10.8",
"mcp-framework": "^0.2.2",
"@modelcontextprotocol/sdk": "^1.11.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.19.0"
}
}