https://github.com/kenliao94/mcp-server-rabbitmq
MCP server for interacting with RabbitMQ
https://github.com/kenliao94/mcp-server-rabbitmq
Last synced: 7 months ago
JSON representation
MCP server for interacting with RabbitMQ
- Host: GitHub
- URL: https://github.com/kenliao94/mcp-server-rabbitmq
- Owner: kenliao94
- License: apache-2.0
- Created: 2025-01-02T00:39:32.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-02-13T21:49:31.000Z (8 months ago)
- Last Synced: 2025-02-13T22:34:24.500Z (8 months ago)
- Language: Python
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - mcp-server-rabbitmq - An MCP server to enable admin operations and message queue management (enqueue/dequeue) with RabbitMQ. ([Read more](/details/mcp-server-rabbitmq.md)) `mcp` `messaging` `rabbitmq` `admin` (Database & Messaging MCP Servers)
- awesome-mcp-servers - **mcp-server-rabbitmq** - MCP server for interacting with RabbitMQ `python` `mcp` `server` `http` `git` `pip install git+https://github.com/kenliao94/mcp-server-rabbitmq` (AI/ML)
- awesome-mcp-servers - **mcp-server-rabbitmq** - MCP server for interacting with RabbitMQ `python` `mcp` `server` `http` `git` `pip install git+https://github.com/kenliao94/mcp-server-rabbitmq` (AI/ML)
- awesome-mcp-zh - kenliao94/mcp-server-rabbitmq
- awesome-mcp-servers - kenliao94/mcp-server-rabbitmq - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ (Legend / 🛠️ <a name="other-tools-and-integrations"></a>Other Tools and Integrations)
- awesome-mcp-servers - kenliao94/mcp-server-rabbitmq - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ (Legend / 🛠️ <a name="other-tools-and-integrations"></a>Other Tools and Integrations)
- awesome-mcp-servers - RabbitMQ MCP Server - MCP server for interacting with RabbitMQ (Table of Contents / Other Tools and Integrations)
- awesome-mcp - kenliao94/mcp-server-rabbitmq - Enable interaction (admin operation, message enqueue/dequeue) with RabbitMQ (MCP Servers / 🛠️ Other Tools and Integrations)
- mcp-index - RabbitMQ MCP Server - Enables interaction with RabbitMQ message brokers, facilitating operations with queues and topics. Designed for seamless MCP client integration to exchange messages over RabbitMQ instances. (APIs and HTTP Requests)
README
# RabbitMQ MCP Server
[](https://smithery.ai/server/@kenliao94/mcp-server-rabbitmq)A [Model Context Protocol](https://www.anthropic.com/news/model-context-protocol) server implementation for RabbitMQ. Enabling MCP client to interact with queues and topics hosted in a RabbitMQ instance.
## Running locally with the Claude desktop app
### Installing via Smithery
To install RabbitMQ MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@kenliao94/mcp-server-rabbitmq):
```bash
npx -y @smithery/cli install @kenliao94/mcp-server-rabbitmq --client claude
```### Manual Installation
1. Clone this repository.
2. Add the following to your `claude_desktop_config.json` file:
- On MacOS: `~/Library/Application\ Support/Claude/claude_desktop_config.json`
- On Windows: `%APPDATA%/Claude/claude_desktop_config.json````
{
"mcpServers": {
"rabbitmq": {
"command": "uv",
"args": [
"--directory",
"/path/to/repo/mcp-server-rabbitmq",
"run",
"mcp-server-rabbitmq",
"--rabbitmq-host",
"",
"--port",
"",
"--username",
"",
"--password",
"",
"--use-tls",
""
]
}
}
}
```
4. Install and open the [Claude desktop app](https://claude.ai/download).
5. Try asking Claude to do a read/write operation of some sort to confirm the setup (e.g. ask it to publish a message to a queue). If there are issues, use the Debugging tools provided in the MCP documentation [here](https://modelcontextprotocol.io/docs/tools/debugging).