rabbitmq-mcp
An MCP server for RabbitMQ that exposes the RabbitMQ HTTP API as tools, enabling natural language interaction with RabbitMQ management.
README
rabbitmq-mcp 
A Model Context Protocol (MCP) server for RabbitMQ, enabling MCP clients to interact with RabbitMQ. This server aims to expose the full range of features available in the official RabbitMQ HTTP API as tools.
MCP is a standardized protocol for managing context between large language models (LLMs) and external systems, such as RabbitMQ. It allows users to ask MCP-enabled AI agents, like Claude Desktop or Cursor, to interact with external systems using natural language.
š¬ Example Requests:
- Get me the message count in the inbound signup metrics queue, and if it's over 10,000, move half of them to the metrics overflow queue.
- Purge the outbound email deadletter queue.
- Check if there are any alarms triggered in the production vhost.
These are parseable and actionable requests that an MCP client can handle with this server.
Installation
If you prefer to install locally:
npm install -g rabbitmq-mcp
Or with npx:
npx -y rabbitmq-mcp
Environment Variables
The following environment variables are required to configure a connection to your RabbitMQ instance:
RABBITMQ_HOSTā accessible host (e.g.test.abc.cloudamqp.com)RABBITMQ_USERNAMEā RabbitMQ usernameRABBITMQ_PASSWORDā RabbitMQ passwordRABBITMQ_MANAGEMENT_PORTā management port (e.g.443or15672)RABBITMQ_PROTOCOLāhttps(default) orhttp. Usehttpsfor secure connections.
Optional TLS/HTTPS Options
You can provide TLS/HTTPS credentials either as file paths or as environment variable strings:
RABBITMQ_CAā CA certificate (PEM string)RABBITMQ_CERTā Client certificate (PEM string)RABBITMQ_KEYā Client private key (PEM string)RABBITMQ_CA_PATHā Path to CA certificate fileRABBITMQ_CERT_PATHā Path to client certificate fileRABBITMQ_KEY_PATHā Path to client private key file
A cert verification flag exists for debugging, if needed:
RABBITMQ_REJECT_UNAUTHORIZEDā Set tofalseto disable server certificate verification (defaults totrue)
MCP Client Configuration Example
As MPC is in rapid development, clients can be finicky to set up correctly. Here's an example best-case config for Claude and Cursor:
{
"mcpServers": {
"rabbitmq-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "rabbitmq-mcp"],
"env": {
"RABBITMQ_HOST": "your-host",
"RABBITMQ_USERNAME": "your-username",
"RABBITMQ_PASSWORD": "your-password",
"RABBITMQ_MANAGEMENT_PORT": "15671",
"RABBITMQ_CA_PATH": "/path/to/rabbit-cert.crt"
}
}
}
}
If you experience initialization errors, you may need to use absolute paths for the command and/or args:
"command": "/local/path/to/node",
"args": ["/local/path/to/rabbitmq-mcp/dist/index.js"],
[!IMPORTANT] Currently, this server only supports running locally with stdio. Remote functionality using SSE/streaming is planned for a future update.
[!IMPORTANT] The management plugin must be enabled in your RabbitMQ instance to use this server. While there are many options for interacting with RabbitMQ directly via AMQP, the protocol only provides a small subset of the capabilities available through the HTTP API.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.