Skip to content
MCP-BridgeMCP-Bridge
Cloud Infrastructure

AmazonMQ MCP Config

Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messagi

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/amazonaws-com-mq.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "amazonaws-com-mq": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-mq"
      ],
      "env": {
        "AMAZONMQ_API_KEY": "your_amazonmq_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "amazonaws-com-mq": {
      "url": "https://mcpbridge.org/config/amazonaws-com-mq.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "amazonaws-com-mq": {
      "url": "https://mcpbridge.org/config/amazonaws-com-mq.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/amazonaws-com-mq.json to fetch programmatically.

{
  "mcpServers": {
    "amazonaws-com-mq": {
      "command": "npx",
      "args": ["-y","@mcp/amazonaws-com-mq"],
      "env": {
      "AMAZONMQ_API_KEY": "your_amazonmq_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/amazonaws-com-mq.json

Environment Variables

AMAZONMQ_API_KEY

Replace your_amazonmq_api_key with your actual amazonmq api key

Endpoints

GET/v1/brokers

ListBrokers

POST/v1/brokers

CreateBroker

GET/v1/configurations

ListConfigurations

POST/v1/configurations

CreateConfiguration

GET/v1/tags/{resource-arn}

ListTags

POST/v1/tags/{resource-arn}

CreateTags

GET/v1/brokers/{broker-id}/users/{username}

DescribeUser

POST/v1/brokers/{broker-id}/users/{username}

CreateUser

PUT/v1/brokers/{broker-id}/users/{username}

UpdateUser

DELETE/v1/brokers/{broker-id}/users/{username}

DeleteUser