Amazon S3 · Capability

Amazon S3 Tables API — Namespaces

Amazon S3 Tables API — Namespaces. 4 operations. Lead operation: Amazon S3 List Namespaces. Self-contained Naftiko capability covering one Amazon S3 business surface.

Run with Naftiko Amazon S3Namespaces

What You Can Do

GET
Listnamespaces — Amazon S3 List Namespaces
/v1/namespaces/{tablebucketarn}
PUT
Createnamespace — Amazon S3 Create Namespace
/v1/namespaces/{tablebucketarn}
GET
Getnamespace — Amazon S3 Get Namespace
/v1/namespaces/{tablebucketarn}/{namespace}
DELETE
Deletenamespace — Amazon S3 Delete Namespace
/v1/namespaces/{tablebucketarn}/{namespace}

MCP Tools

amazon-s3-list-namespaces

Amazon S3 List Namespaces

read-only idempotent
amazon-s3-create-namespace

Amazon S3 Create Namespace

idempotent
amazon-s3-get-namespace

Amazon S3 Get Namespace

read-only idempotent
amazon-s3-delete-namespace

Amazon S3 Delete Namespace

idempotent

Capability Spec

tables-namespaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon S3 Tables API — Namespaces
  description: 'Amazon S3 Tables API — Namespaces. 4 operations. Lead operation: Amazon S3 List Namespaces. Self-contained
    Naftiko capability covering one Amazon S3 business surface.'
  tags:
  - Amazon S3
  - Namespaces
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_S3_API_KEY: AMAZON_S3_API_KEY
capability:
  consumes:
  - type: http
    namespace: tables-namespaces
    baseUri: https://s3tables.{region}.amazonaws.com
    description: Amazon S3 Tables API — Namespaces business capability. Self-contained, no shared references.
    resources:
    - name: namespaces-tableBucketARN
      path: /namespaces/{tableBucketARN}
      operations:
      - name: listnamespaces
        method: GET
        description: Amazon S3 List Namespaces
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: prefix
          in: query
          type: string
          description: The prefix of the namespaces.
        - name: continuationToken
          in: query
          type: string
          description: A continuation token for pagination.
        - name: maxNamespaces
          in: query
          type: integer
          description: The maximum number of namespaces to return.
      - name: createnamespace
        method: PUT
        description: Amazon S3 Create Namespace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: namespaces-tableBucketARN-namespace
      path: /namespaces/{tableBucketARN}/{namespace}
      operations:
      - name: getnamespace
        method: GET
        description: Amazon S3 Get Namespace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletenamespace
        method: DELETE
        description: Amazon S3 Delete Namespace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_S3_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: tables-namespaces-rest
    port: 8080
    description: REST adapter for Amazon S3 Tables API — Namespaces. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/namespaces/{tablebucketarn}
      name: namespaces-tablebucketarn
      description: REST surface for namespaces-tableBucketARN.
      operations:
      - method: GET
        name: listnamespaces
        description: Amazon S3 List Namespaces
        call: tables-namespaces.listnamespaces
        with:
          prefix: rest.prefix
          continuationToken: rest.continuationToken
          maxNamespaces: rest.maxNamespaces
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: createnamespace
        description: Amazon S3 Create Namespace
        call: tables-namespaces.createnamespace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/namespaces/{tablebucketarn}/{namespace}
      name: namespaces-tablebucketarn-namespace
      description: REST surface for namespaces-tableBucketARN-namespace.
      operations:
      - method: GET
        name: getnamespace
        description: Amazon S3 Get Namespace
        call: tables-namespaces.getnamespace
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletenamespace
        description: Amazon S3 Delete Namespace
        call: tables-namespaces.deletenamespace
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tables-namespaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon S3 Tables API — Namespaces. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: amazon-s3-list-namespaces
      description: Amazon S3 List Namespaces
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tables-namespaces.listnamespaces
      with:
        prefix: tools.prefix
        continuationToken: tools.continuationToken
        maxNamespaces: tools.maxNamespaces
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-s3-create-namespace
      description: Amazon S3 Create Namespace
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tables-namespaces.createnamespace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-s3-get-namespace
      description: Amazon S3 Get Namespace
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tables-namespaces.getnamespace
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-s3-delete-namespace
      description: Amazon S3 Delete Namespace
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tables-namespaces.deletenamespace
      outputParameters:
      - type: object
        mapping: $.