Amazon SQS · Capability

Amazon SQS Amazon Simple Queue Service (SQS) API

Amazon SQS Amazon Simple Queue Service (SQS) API. 3 operations. Lead operation: Amazon Sqs List All Tags for a Queue. Self-contained Naftiko capability covering one Amazon Sqs business surface.

Run with Naftiko Amazon Sqs

What You Can Do

GET
Listqueuetags — Amazon Sqs List All Tags for a Queue
/v1/{accountid}/{queuename}/tags
POST
Tagqueue — Amazon Sqs Add Tags to a Queue
/v1/{accountid}/{queuename}/tags
DELETE
Untagqueue — Amazon Sqs Remove Tags From a Queue
/v1/{accountid}/{queuename}/tags

MCP Tools

amazon-sqs-list-all-tags

Amazon Sqs List All Tags for a Queue

read-only idempotent
amazon-sqs-add-tags-queue

Amazon Sqs Add Tags to a Queue

amazon-sqs-remove-tags-queue

Amazon Sqs Remove Tags From a Queue

idempotent

Capability Spec

amazon-sqs-general.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon SQS Amazon Simple Queue Service (SQS) API
  description: 'Amazon SQS Amazon Simple Queue Service (SQS) API. 3 operations. Lead operation: Amazon Sqs List All Tags for
    a Queue. Self-contained Naftiko capability covering one Amazon Sqs business surface.'
  tags:
  - Amazon Sqs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_SQS_API_KEY: AMAZON_SQS_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-sqs-general
    baseUri: https://sqs.{region}.amazonaws.com
    description: Amazon SQS Amazon Simple Queue Service (SQS) API business capability. Self-contained, no shared references.
    resources:
    - name: accountId-queueName-tags
      path: /{accountId}/{queueName}/tags
      operations:
      - name: listqueuetags
        method: GET
        description: Amazon Sqs List All Tags for a Queue
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Action
          in: query
          type: string
          required: true
      - name: tagqueue
        method: POST
        description: Amazon Sqs Add Tags to a Queue
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: untagqueue
        method: DELETE
        description: Amazon Sqs Remove Tags From a Queue
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Action
          in: query
          type: string
          required: true
        - name: TagKey.1
          in: query
          type: string
          description: The tag key to remove
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_SQS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-sqs-general-rest
    port: 8080
    description: REST adapter for Amazon SQS Amazon Simple Queue Service (SQS) API. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/{accountid}/{queuename}/tags
      name: accountid-queuename-tags
      description: REST surface for accountId-queueName-tags.
      operations:
      - method: GET
        name: listqueuetags
        description: Amazon Sqs List All Tags for a Queue
        call: amazon-sqs-general.listqueuetags
        with:
          Action: rest.Action
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: tagqueue
        description: Amazon Sqs Add Tags to a Queue
        call: amazon-sqs-general.tagqueue
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: untagqueue
        description: Amazon Sqs Remove Tags From a Queue
        call: amazon-sqs-general.untagqueue
        with:
          Action: rest.Action
          TagKey.1: rest.TagKey.1
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-sqs-general-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon SQS Amazon Simple Queue Service (SQS) API. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: amazon-sqs-list-all-tags
      description: Amazon Sqs List All Tags for a Queue
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-sqs-general.listqueuetags
      with:
        Action: tools.Action
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-sqs-add-tags-queue
      description: Amazon Sqs Add Tags to a Queue
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-sqs-general.tagqueue
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-sqs-remove-tags-queue
      description: Amazon Sqs Remove Tags From a Queue
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-sqs-general.untagqueue
      with:
        Action: tools.Action
        TagKey.1: tools.TagKey.1
      outputParameters:
      - type: object
        mapping: $.