R

RabbitMQ

Publish, consume and inspect RabbitMQ queues.

·No reviews yet
Repo
Share:

About

Auto-generated

RabbitMQ is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about RabbitMQ.

What is the RabbitMQ MCP?
The RabbitMQ MCP allows you to interact with RabbitMQ queues. You can publish messages, consume messages, and inspect queue contents directly from your client application.
How do I configure the RabbitMQ MCP connection?
Configuration details depend on your MCP client. Typically, you will provide the standard RabbitMQ connection parameters, such as the host, port, virtual host, and credentials, if required by your RabbitMQ instance.
Does the RabbitMQ MCP require an API key or other credentials?
The RabbitMQ MCP itself does not use an API key. However, connecting to a RabbitMQ server usually requires a username and password, which you will provide during the connection setup.
What are the primary capabilities of this RabbitMQ MCP?
This MCP enables you to publish messages to RabbitMQ queues, consume messages from queues, and inspect their current status. It provides fundamental operations for managing message flow.
What are the licensing terms for the RabbitMQ MCP?
The RabbitMQ MCP is community-provided and its licensing is typically open-source, aligning with the project's repository at https://github.com/kenliao94/mcp-server-rabbitmq. The underlying RabbitMQ server is also open-source.
What is a prerequisite for using the RabbitMQ MCP?
A prerequisite for using this MCP is a running RabbitMQ server instance that you can access. Without an active RabbitMQ server, the MCP cannot perform any operations.

Install RabbitMQ

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "rabbitmq": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-rabbitmq"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "rabbitmq": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-rabbitmq"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "rabbitmq": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-rabbitmq"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.