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 Dynamodb business surface.

Run with Naftiko 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

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 Dynamodb business surface.'
  tags:
  - Dynamodb
  - Tables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DYNAMODB_API_KEY: DYNAMODB_API_KEY
capability:
  consumes:
  - type: http
    namespace: 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: true
    - 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: apikey
      key: Authorization
      value: '{{env.DYNAMODB_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: 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: 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: 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: 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: 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: dynamodb-tables.updatetable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: 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: 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: 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: 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: 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: dynamodb-tables.updatetable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.