Overview
RabbitMQ MCP Server is a server implementation for the Model Context Protocol (MCP) that allows clients to interact with queues and topics hosted in a RabbitMQ instance.
To use RabbitMQ MCP Server, you can install it via Smithery or manually by cloning the repository and configuring it in the Claude desktop app.
- Enables interaction with RabbitMQ queues and topics. - Supports both automatic and manual installation methods. - Provides debugging tools for troubleshooting.
- Integrating RabbitMQ with applications using the Model Context Protocol.
- Facilitating message queuing and processing in distributed systems.
- Enabling real-time data communication between services.
Add to your AI client
Use these steps to connect RabbitMQ MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-rabbitmq-kenliao94": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-rabbitmq-kenliao94"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-rabbitmq-kenliao94": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-rabbitmq-kenliao94"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-rabbitmq-kenliao94": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-rabbitmq-kenliao94"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-rabbitmq-kenliao94": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-rabbitmq-kenliao94"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-rabbitmq-kenliao94": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-rabbitmq-kenliao94"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-rabbitmq-kenliao94": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-rabbitmq-kenliao94"
]
}
}
}FAQ
What is the Model Context Protocol?
The Model Context Protocol is a protocol designed to facilitate communication between clients and servers in a structured manner.
How do I install RabbitMQ MCP Server?
You can install it automatically via Smithery or manually by following the installation instructions in the repository.
What should I do if I encounter issues?
Use the debugging tools provided in the MCP documentation to troubleshoot any issues.