messaging
RabbitMQ MCP Gateway for AI Agents
Expose RabbitMQ tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
6 functions 6 read 0 write Username and password auth
RabbitMQ MCP Gateway
Expose RabbitMQ to MCP clients with `kosmokrator mcp:serve --integration=rabbitmq`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=rabbitmq --write=deny --json {
"mcpServers": {
"kosmokrator-rabbitmq": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=rabbitmq",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=rabbitmq --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__rabbitmq__rabbitmq_list_queues | rabbitmq.rabbitmq_list_queues | Read read |
integration__rabbitmq__rabbitmq_get_queue | rabbitmq.rabbitmq_get_queue | Read read |
integration__rabbitmq__rabbitmq_list_exchanges | rabbitmq.rabbitmq_list_exchanges | Read read |
integration__rabbitmq__rabbitmq_list_connections | rabbitmq.rabbitmq_list_connections | Read read |
integration__rabbitmq__rabbitmq_list_vhosts | rabbitmq.rabbitmq_list_vhosts | Read read |
integration__rabbitmq__rabbitmq_get_overview | rabbitmq.rabbitmq_get_overview | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.