This repository provides a Model Context Protocol (MCP) server implementation for RabbitMQ, enabling MCP clients like Claude to interact with queues and topics hosted in a RabbitMQ instance.
This repository provides a Model Context Protocol (MCP) server implementation specifically designed for RabbitMQ. It enables MCP clients, such as the Claude desktop app, to seamlessly interact with queues and topics hosted within a RabbitMQ instance.
To automatically install the RabbitMQ MCP Server for the Claude Desktop app using Smithery, execute the following command:
npx -y @smithery/cli install @kenliao94/mcp-server-rabbitmq --client claude
claude_desktop_config.json
file, located at:~/Library/Application\ Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"rabbitmq": {
"command": "uv",
"args": [
"--directory",
"/path/to/repo/mcp-server-rabbitmq",
"run",
"mcp-server-rabbitmq",
"--rabbitmq-host",
"<hostname ex. test.rabbit.com, localhost>",
"--port",
"<port number ex. 5672>",
"--username",
"<rabbitmq username>",
"--password",
"<rabbitmq password>",
"--use-tls",
"<true if uses amqps, false otherwise>"
]
}
}
}
kenliao94/mcp-server-rabbitmq
January 2, 2025
March 28, 2025
Python