RabbitMQ · Capability

RabbitMQ Management HTTP API — Channels

RabbitMQ Management HTTP API — Channels. 1 operations. Lead operation: List channels. Self-contained Naftiko capability covering one Rabbitmq business surface.

Run with Naftiko RabbitmqChannels

What You Can Do

GET
Listchannels — List channels
/v1/channels

MCP Tools

list-channels

List channels

read-only idempotent

Capability Spec

management-channels.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RabbitMQ Management HTTP API — Channels
  description: 'RabbitMQ Management HTTP API — Channels. 1 operations. Lead operation: List channels. Self-contained Naftiko
    capability covering one Rabbitmq business surface.'
  tags:
  - Rabbitmq
  - Channels
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RABBITMQ_API_KEY: RABBITMQ_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-channels
    baseUri: http://localhost:15672/api
    description: RabbitMQ Management HTTP API — Channels business capability. Self-contained, no shared references.
    resources:
    - name: channels
      path: /channels
      operations:
      - name: listchannels
        method: GET
        description: List channels
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.RABBITMQ_USER}}'
      password: '{{env.RABBITMQ_PASS}}'
  exposes:
  - type: rest
    namespace: management-channels-rest
    port: 8080
    description: REST adapter for RabbitMQ Management HTTP API — Channels. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/channels
      name: channels
      description: REST surface for channels.
      operations:
      - method: GET
        name: listchannels
        description: List channels
        call: management-channels.listchannels
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-channels-mcp
    port: 9090
    transport: http
    description: MCP adapter for RabbitMQ Management HTTP API — Channels. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-channels
      description: List channels
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-channels.listchannels
      outputParameters:
      - type: object
        mapping: $.