- Explore MCP Servers
- mcp-server-rabbitmq
Mcp Server Rabbitmq
What is Mcp Server Rabbitmq
mcp-server-rabbitmq is an implementation of the Model Context Protocol (MCP) designed for interacting with RabbitMQ. It allows MCP clients to communicate with queues and topics hosted on a RabbitMQ instance.
Use cases
Use cases for mcp-server-rabbitmq include building applications that require message queuing, real-time data processing, and enabling communication between different services using RabbitMQ as a message broker.
How to use
To use mcp-server-rabbitmq, you can install it via Smithery using the command: npx -y @smithery/cli install @kenliao94/mcp-server-rabbitmq --client claude. Alternatively, you can manually clone the repository and configure it in your ‘claude_desktop_config.json’ file by specifying RabbitMQ connection details.
Key features
Key features include seamless integration with RabbitMQ, support for both queues and topics, and the ability to perform read/write operations through the MCP protocol.
Where to use
undefined
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Mcp Server Rabbitmq
mcp-server-rabbitmq is an implementation of the Model Context Protocol (MCP) designed for interacting with RabbitMQ. It allows MCP clients to communicate with queues and topics hosted on a RabbitMQ instance.
Use cases
Use cases for mcp-server-rabbitmq include building applications that require message queuing, real-time data processing, and enabling communication between different services using RabbitMQ as a message broker.
How to use
To use mcp-server-rabbitmq, you can install it via Smithery using the command: npx -y @smithery/cli install @kenliao94/mcp-server-rabbitmq --client claude. Alternatively, you can manually clone the repository and configure it in your ‘claude_desktop_config.json’ file by specifying RabbitMQ connection details.
Key features
Key features include seamless integration with RabbitMQ, support for both queues and topics, and the ability to perform read/write operations through the MCP protocol.
Where to use
undefined
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
RabbitMQ MCP Server
A Model Context Protocol server implementation for RabbitMQ operation.
Features
Manage your RabbitMQ message brokers using AI agent
This MCP servers wraps admin APIs of a RabbitMQ broker as MCP tools. It also uses Pika to interact with RabbitMQ to operate at the message level. You can also specify a different RabbitMQ broker that you want to connect to mid-conversation (default is configured during server initialization).
Supports streamable HTTP with FastMCP’s BearerAuthProvider
You can start a remote RabbitMQ MCP server by configuring your own IdP and 3rd party authorization provider.
Seamless integration with MCP clients
The package is available on PyPI, you can use uvx without having to fork and build the MCP server locally first.
Installation
Smithery
To install RabbitMQ MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @kenliao94/mcp-server-rabbitmq --client claude
Try it online
https://smithery.ai/server/@kenliao94/mcp-server-rabbitmq
PyPI
https://pypi.org/project/mcp-server-rabbitmq/
Use uvx directly in your MCP client config
{
"mcpServers": {
"rabbitmq": {
"command": "uvx",
"args": [
"mcp-server-rabbitmq@latest",
"--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>"
]
}
}
}
From source
- Clone this repository.
{
"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>"
]
}
}
}
Roadmap
- Full feature parity with
rabbitmqadmin - Support RabbitMQ OAuth instead of basic authentication
Development
Setup Development Environment
# Clone the repository
git clone https://github.com/kenliao94/mcp-server-rabbitmq.git
cd mcp-server-rabbitmq
# Install pre-commit hooks
pre-commit install
Running Tests
pytest
Code Quality
This project uses ruff for linting and formatting:
# Run linter
ruff check .
# Run formatter
ruff format .
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










