Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for RabbitMQ with full SSL/CA certificate support, enabling queue, exchange, binding, and message management operations.

README.md

RabbitMQ MCP Server

MCP сервер для работы с RabbitMQ с полной поддержкой SSL/CA сертификатов.

Репозиторий: https://github.com/sobue-code/rabbitmq_mcp

Возможности

  • Полная поддержка SSL/TLS с CA сертификатами
  • Управление очередями (создание, удаление, очистка)
  • Управление exchanges (создание, удаление)
  • Привязка очередей к exchanges
  • Публикация сообщений
  • Чтение сообщений из очередей
  • Проверка статуса соединения

Установка

Вариант 1: Из GitHub (рекомендуется)

Добавьте в конфигурацию MCP (~/.config/opencode/opencode.json или .mcp.json в проекте):

{
  "mcpServers": {
    "rabbitmq": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/sobue-code/rabbitmq_mcp.git",
        "rabbitmq-mcp-altqa"
      ],
      "env": {
        "RABBITMQ_HOST": "your-rabbitmq-host.com",
        "RABBITMQ_PORT": "5671",
        "RABBITMQ_USER": "your-username",
        "RABBITMQ_PASSWORD": "your-password",
        "RABBITMQ_VHOST": "your-vhost",
        "RABBITMQ_USE_SSL": "true",
        "RABBITMQ_CA_CERT": "/path/to/your/ca_cert.pem"
      }
    }
  }
}

Вариант 2: Локальная установка (для разработки)

# Клонировать репозиторий
git clone https://github.com/sobue-code/rabbitmq_mcp.git
cd rabbitmq_mcp

# Установить зависимости
uv sync

Конфигурация для локальной установки:

{
  "mcpServers": {
    "rabbitmq": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/path/to/rabbitmq_mcp",
        "rabbitmq-mcp-altqa"
      ],
      "env": {
        "RABBITMQ_HOST": "your-rabbitmq-host.com",
        "RABBITMQ_PORT": "5671",
        "RABBITMQ_USER": "your-username",
        "RABBITMQ_PASSWORD": "your-password",
        "RABBITMQ_VHOST": "your-vhost",
        "RABBITMQ_USE_SSL": "true",
        "RABBITMQ_CA_CERT": "/path/to/your/ca_cert.pem"
      }
    }
  }
}

Переменные окружения

| Переменная | Описание | По умолчанию | |------------|----------|--------------| | RABBITMQ_HOST | Хост RabbitMQ | localhost | | RABBITMQ_PORT | Порт | 5672 | | RABBITMQ_USER | Имя пользователя | guest | | RABBITMQ_PASSWORD | Пароль | guest | | RABBITMQ_VHOST | Виртуальный хост | / | | RABBITMQ_USE_SSL | Использовать SSL (true/false) | false | | RABBITMQ_CA_CERT | Путь к CA сертификату | (нет) | | RABBITMQ_HEARTBEAT | Интервал heartbeat (сек) | 3600 | | RABBITMQ_SOCKET_TIMEOUT | Таймаут сокета (сек) | 5 |

Доступные инструменты

Управление соединением

  • rabbitmq_connect — Подключиться к RabbitMQ
  • rabbitmq_disconnect — Отключиться
  • rabbitmq_status — Проверить статус соединения

Очереди

  • rabbitmq_declare_queue — Создать очередь (quorum по умолчанию)
  • rabbitmq_delete_queue — Удалить очередь
  • rabbitmq_purge_queue — Очистить очередь
  • rabbitmq_queue_message_count — Количество сообщений
  • rabbitmq_get_message — Получить сообщение

Exchanges

  • rabbitmq_declare_exchange — Создать exchange
  • rabbitmq_delete_exchange — Удалить exchange

Связи

  • rabbitmq_bind_queue — Привязать очередь к exchange
  • rabbitmq_unbind_queue — Отвязать очередь

Публикация

  • rabbitmq_publish — Опубликовать в exchange
  • rabbitmq_publish_to_queue — Опубликовать напрямую в очередь

Примеры использования

Подключение

Вызови rabbitmq_connect

Проверка статуса

Проверь статус соединения через rabbitmq_status

Создание очереди

Создай quorum очередь "my-queue" через rabbitmq_declare_queue

Публикация сообщения

Опубликуй сообщение {"task": "test"} в exchange "" с routing key "my-queue"

Получение сообщения

Получи сообщение из очереди "my-queue" через rabbitmq_get_message

Разработка

# Клонировать и установить
git clone https://github.com/sobue-code/rabbitmq_mcp.git
cd rabbitmq_mcp
uv sync

# Тестирование сервера
echo '{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}},"id":1}' | uv run rabbitmq-mcp-altqa

Лицензия

Apache-2.0

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.