RabbitMQ Mcp Go
@maiconjobim
About RabbitMQ Mcp Go
A Go implementation of Model Control Protocol (MCP) server for RabbitMQ integration
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"rabbitmq": {
"command": "rabbitmq-mcp-server",
"env": {
"RABBITMQ_URL": "amqp://guest:guest@localhost:5672/"
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is RabbitMQ MCP Go?
A Go implementation of a Model Control Protocol (MCP) server for RabbitMQ integration. It enables LLM models to interact with RabbitMQ through a standardized interface, allowing common operations like publishing messages to queues or exchanges.
How to use RabbitMQ MCP Go?
Install Go 1.24.3, clone the repository, run go mod download, then build with go build ./cmd/.... Configure your MCP client (e.g., Cursor, Claude Desktop) with command: "rabbitmq-mcp-server" and set the RABBITMQ_URL environment variable to your RabbitMQ connection string. Use the built-in publish tool from the AI assistant to send messages.
Key features of RabbitMQ MCP Go
- Publish messages to a RabbitMQ queue or exchange
- Optional parameters: queue, exchange, content_type, headers
- Supports content types "text/plain" (default) and "application/json"
- Detailed error handling for missing parameters, invalid JSON, and connection issues
- Easy integration with Cursor and Claude Desktop MCP clients
Use cases of RabbitMQ MCP Go
- Send a "Hello World" message to a specific queue
- Publish a JSON order status update to an exchange
- Send a highโpriority message with custom headers to a notifications queue
FAQ from RabbitMQ MCP Go
How do I configure RabbitMQ MCP Go?
Add the following to your MCP client settings: "command": "rabbitmq-mcp-server" and set the environment variable RABBITMQ_URL to your RabbitMQ URL (e.g., amqp://guest:guest@localhost:5672/).
What are the required and optional parameters for the publish tool?
The message parameter is required. Optionally, you can specify queue, exchange, content_type (default "text/plain"), and headers (as a JSON string). At least one of queue or exchange must be provided.
What happens if I omit both queue and exchange?
The tool returns an error: neither queue nor exchange is specified. Similarly, errors occur if the required message parameter is missing, if content_type is "application/json" but the message is not valid JSON, or if RabbitMQ connection/publishing fails.
Can I use RabbitMQ MCP Go with Cursor or Claude Desktop?
Yes. For Cursor, add the configuration to ~/.cursor/mcp.json. For Claude Desktop, edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.
What runtime dependencies does RabbitMQ MCP Go require?
It requires Go 1.24.3 to build. The server itself is a standalone binary; you only need a running RabbitMQ instance accessible via the provided RABBITMQ_URL.
Frequently asked questions
How do I configure RabbitMQ MCP Go?
Add the following to your MCP client settings: `"command": "rabbitmq-mcp-server"` and set the environment variable `RABBITMQ_URL` to your RabbitMQ URL (e.g., `amqp://guest:guest@localhost:5672/`).
What are the required and optional parameters for the publish tool?
The `message` parameter is required. Optionally, you can specify `queue`, `exchange`, `content_type` (default "text/plain"), and `headers` (as a JSON string). At least one of `queue` or `exchange` must be provided.
What happens if I omit both queue and exchange?
The tool returns an error: neither queue nor exchange is specified. Similarly, errors occur if the required `message` parameter is missing, if `content_type` is "application/json" but the message is not valid JSON, or if RabbitMQ connection/publishing fails.
Can I use RabbitMQ MCP Go with Cursor or Claude Desktop?
Yes. For Cursor, add the configuration to `~/.cursor/mcp.json`. For Claude Desktop, edit `~/Library/Application Support/Claude/claude_desktop_config.json` on macOS or `%APPDATA%\Claude\claude_desktop_config.json` on Windows.
What runtime dependencies does RabbitMQ MCP Go require?
It requires Go 1.24.3 to build. The server itself is a standalone binary; you only need a running RabbitMQ instance accessible via the provided `RABBITMQ_URL`.
Basic information
More Other MCP servers
Website
FunnyWolfAdversary simulation and Red teaming platform with AI
MCP Registry
modelcontextprotocolA community driven registry service for Model Context Protocol (MCP) servers.
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
FastMCP v2 ๐
jlowin๐ The fast, Pythonic way to build MCP servers and clients.

Peekaboo MCP โ lightning-fast macOS screenshots for AI agents
steipetePeekaboo is a macOS CLI & optional MCP server that enables AI agents to capture screenshots of applications, or the entire system, with optional visual question answering through local or remote AI models.
Comments