Amazon DynamoDB · Capability

Amazon DynamoDB API — Tables

Amazon DynamoDB API — Tables. 5 operations. Lead operation: Amazon DynamoDB Create a DynamoDB Table. Self-contained Naftiko capability covering one Amazon Dynamodb business surface.

Run with Naftiko Amazon DynamodbTables

What You Can Do

POST
Createtable — Amazon DynamoDB Create a DynamoDB Table
/v1
POST
Deletetable — Amazon DynamoDB Delete a DynamoDB Table
/v1/deletetable
POST
Describetable — Amazon DynamoDB Describe a DynamoDB Table
/v1/describetable
POST
Listtables — Amazon DynamoDB List DynamoDB Tables
/v1/listtables
POST
Updatetable — Amazon DynamoDB Update a DynamoDB Table
/v1/updatetable

MCP Tools

amazon-dynamodb-create-dynamodb-table

Amazon DynamoDB Create a DynamoDB Table

amazon-dynamodb-delete-dynamodb-table

Amazon DynamoDB Delete a DynamoDB Table

amazon-dynamodb-describe-dynamodb-table

Amazon DynamoDB Describe a DynamoDB Table

amazon-dynamodb-list-dynamodb-tables

Amazon DynamoDB List DynamoDB Tables

read-only
amazon-dynamodb-update-dynamodb-table

Amazon DynamoDB Update a DynamoDB Table

Capability Spec

amazon-dynamodb-tables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon DynamoDB API — Tables
  description: 'Amazon DynamoDB API — Tables. 5 operations. Lead operation: Amazon DynamoDB Create a DynamoDB Table. Self-contained
    Naftiko capability covering one Amazon Dynamodb business surface.'
  tags:
  - Amazon Dynamodb
  - Tables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_DYNAMODB_API_KEY: AMAZON_DYNAMODB_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-dynamodb-tables
    baseUri: https://dynamodb.{region}.amazonaws.com
    description: Amazon DynamoDB API — Tables business capability. Self-contained, no shared references.
    resources:
    - name: root
      path: /
      operations:
      - name: createtable
        method: POST
        description: Amazon DynamoDB Create a DynamoDB Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: '#DeleteTable'
      path: /#DeleteTable
      operations:
      - name: deletetable
        method: POST
        description: Amazon DynamoDB Delete a DynamoDB Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: '#DescribeTable'
      path: /#DescribeTable
      operations:
      - name: describetable
        method: POST
        description: Amazon DynamoDB Describe a DynamoDB Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: '#ListTables'
      path: /#ListTables
      operations:
      - name: listtables
        method: POST
        description: Amazon DynamoDB List DynamoDB Tables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: '#UpdateTable'
      path: /#UpdateTable
      operations:
      - name: updatetable
        method: POST
        description: Amazon DynamoDB Update a DynamoDB Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.AMAZON_DYNAMODB_API_KEY}}'
  exposes:
  - type: rest
    namespace: amazon-dynamodb-tables-rest
    port: 8080
    description: REST adapter for Amazon DynamoDB API — Tables. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1
      name: root
      description: REST surface for root.
      operations:
      - method: POST
        name: createtable
        description: Amazon DynamoDB Create a DynamoDB Table
        call: amazon-dynamodb-tables.createtable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/deletetable
      name: deletetable
      description: 'REST surface for #DeleteTable.'
      operations:
      - method: POST
        name: deletetable
        description: Amazon DynamoDB Delete a DynamoDB Table
        call: amazon-dynamodb-tables.deletetable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/describetable
      name: describetable
      description: 'REST surface for #DescribeTable.'
      operations:
      - method: POST
        name: describetable
        description: Amazon DynamoDB Describe a DynamoDB Table
        call: amazon-dynamodb-tables.describetable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/listtables
      name: listtables
      description: 'REST surface for #ListTables.'
      operations:
      - method: POST
        name: listtables
        description: Amazon DynamoDB List DynamoDB Tables
        call: amazon-dynamodb-tables.listtables
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/updatetable
      name: updatetable
      description: 'REST surface for #UpdateTable.'
      operations:
      - method: POST
        name: updatetable
        description: Amazon DynamoDB Update a DynamoDB Table
        call: amazon-dynamodb-tables.updatetable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-dynamodb-tables-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon DynamoDB API — Tables. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: amazon-dynamodb-create-dynamodb-table
      description: Amazon DynamoDB Create a DynamoDB Table
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-dynamodb-tables.createtable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-dynamodb-delete-dynamodb-table
      description: Amazon DynamoDB Delete a DynamoDB Table
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-dynamodb-tables.deletetable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-dynamodb-describe-dynamodb-table
      description: Amazon DynamoDB Describe a DynamoDB Table
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-dynamodb-tables.describetable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-dynamodb-list-dynamodb-tables
      description: Amazon DynamoDB List DynamoDB Tables
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: amazon-dynamodb-tables.listtables
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-dynamodb-update-dynamodb-table
      description: Amazon DynamoDB Update a DynamoDB Table
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-dynamodb-tables.updatetable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.