P
mcp-server-rabbitmq
...
Created 1/2/2025bykenliao94
Language:
Python
Stars:
13
Forks:
2
RabbitMQ MCP Server
A 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:
npx -y @smithery/cli install @kenliao94/mcp-server-rabbitmq --client claude
Manual Installation
- Clone this repository.
- 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",
""
]
}
}
}
- Install and open the Claude desktop app.
- 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.
Last updated: 3/28/2025
Publisher info
Ken Liao
Senior software engineer at AWS. Passionate about open source software, backend and infrastructure.
Amazon
Vancouver, BC
23
followers21
following45
reposMore MCP servers built with Python
MCP Server for Bing Webmaster Tools
An MCP (Model Context Protocol) server that provides access to Bing Webmaster Tools functionality
By isiahw1
usgs-water-mcp
This MCP server provides access to real-time water data from the USGS Water Services API. It allows you to fetch instantaneous water measurements including stream flow, gage height, temperature, and other water quality parameters from thousands of monitoring stations across the United States.
By pgiffy