Amazon SQS Queue

Amazon SQS Queue MCP Connector for Claude

F

This MCP does exactly one thing: it pulls and acknowledges messages from a single Amazon SQS Queue. That's its only function, and nothing else. Incredible for building secure AI workers.

3 tools Official Updated Jun 28, 2026 Official Vinkius Partner

This server strips away dangerous global AWS permissions. It gives your AI agent one surgical superpower: the ability to pull tasks and acknowledge completion on one specific SQS Queue.

By strictly scoping access, your AI can safely operate as a highly scalable background worker, processing tasks one by one without ever accessing other queues.

The Superpowers

  • Absolute Containment: The agent is locked to a single queue. It cannot peek into other workloads or purge queues.
  • Native SQS Integration: Uses standard polling and deletion mechanisms to ensure tasks are processed exactly once.
  • Plug & Play Worker: Instantly turns your AI into an asynchronous background worker capable of chewing through millions of queued tasks.
message-queueawsasync-processingtask-queuebackground-workersecurity-scoping

3 tools expose this connector's capabilities to your AI agent.

delete_message

Delete a message from the SQS queue

receive_messages

Receive messages from the SQS queue

send_message

Send a message to the SQS queue

See how to talk to your AI agent using Amazon SQS Queue.

Send a task to process video 1234 to the queue.

Done! I've sent the message with the video processing payload to the queue. The MessageId is abc-123-def.

Check if there are any new messages in the queue.

I polled the queue and found 2 new messages. The first one is a request to generate a report, and the second is an alert. I have the ReceiptHandles ready if you want me to delete them.

Delete message using receipt handle xyz-789.

The message has been successfully deleted from the queue. It will no longer be processed.

To enforce the principle of least privilege and zero-trust architecture. An autonomous agent shouldn't have the power to read or delete messages from critical system queues.

Related Connectors