Back to MCP directory
publicPublicdnsLocal runtime

kenliao94_mcp-server-rabbitmq

一个基于RabbitMQ的模型上下文协议(MCP)服务器实现,允许MCP客户端与RabbitMQ实例中的队列和主题进行交互。

article

README

🚀 RabbitMQ MCP 服务器

一个基于 RabbitMQ模型上下文协议 服务器实现。它能让 MCP 客户端与 RabbitMQ 实例中的队列和主题进行交互,为相关应用提供高效的数据交互能力。

smithery badge

🚀 快速开始

📦 安装指南

通过 Smithery 安装

要通过 Smithery 自动安装 RabbitMQ MCP 服务器以用于 Claude 桌面,可执行以下命令:

npx -y @smithery/cli install @kenliao94/mcp-server-rabbitmq --client claude

手动安装

  1. 克隆此仓库。
  2. 在您的 claude_desktop_config.json 文件中添加以下内容:
    • MacOS:~/Library/Application\ Support/Claude/claude_desktop_config.json
    • 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",
            "<hostname ex. test.rabbit.com, localhost>",
            "--port", 
            "<端口号 ex. 5672>",
            "--username",
            "<RabbitMQ用户名>",
            "--password",
            "<RabbitMQ密码>",
            "--use-tls",
            "<如果使用amqps,则为true,否则false>"
        ]
      }
    }
}
  1. 安装并打开 Claude 桌面应用
  2. 让 Claude 执行读取或写入操作以确认设置(例如,让其发布消息到队列)。如果出现问题,请使用 MCP 文档中提供的调试工具 此处
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client