Skip to content
MCP-Bridge
Cloud Infrastructure

Amazon Simple Queue Service Claude Desktop Config

Add the Amazon Simple Queue Service MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "amazonaws-com-sqs": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-sqs"
      ],
      "env": {
        "AMAZON_SIMPLE_QUEUE_SERVICE_API_KEY": "your_amazon_simple_queue_service_api_key"
      }
    }
  }
}

Environment Variables

AMAZON_SIMPLE_QUEUE_SERVICE_API_KEY

Replace your_amazon_simple_queue_service_api_key with your actual amazon simple queue service api key

Endpoints

GET/{AccountNumber}/{QueueName}/#Action=AddPermission

GET_AddPermission

POST/#Action=AddPermission

POST_AddPermission

GET/{AccountNumber}/{QueueName}/#Action=ChangeMessageVisibility

GET_ChangeMessageVisibility

POST/#Action=ChangeMessageVisibility

POST_ChangeMessageVisibility

GET/{AccountNumber}/{QueueName}/#Action=ChangeMessageVisibilityBatch

GET_ChangeMessageVisibilityBatch

POST/#Action=ChangeMessageVisibilityBatch

POST_ChangeMessageVisibilityBatch

GET/#Action=CreateQueue

GET_CreateQueue

POST/#Action=CreateQueue

POST_CreateQueue

GET/{AccountNumber}/{QueueName}/#Action=DeleteMessage

GET_DeleteMessage

POST/#Action=DeleteMessage

POST_DeleteMessage