Amazon DynamoDB · Capability

Amazon DynamoDB API — Batch

Amazon DynamoDB API — Batch. 2 operations. Lead operation: Amazon DynamoDB Get Multiple Items from One or More Tables. Self-contained Naftiko capability covering one Amazon Dynamodb business surface.

Run with Naftiko Amazon DynamodbBatch

What You Can Do

POST
Batchgetitem — Amazon DynamoDB Get Multiple Items from One or More Tables
/v1/batchgetitem
POST
Batchwriteitem — Amazon DynamoDB Put or Delete Multiple Items in One or More Tables
/v1/batchwriteitem

MCP Tools

amazon-dynamodb-get-multiple-items

Amazon DynamoDB Get Multiple Items from One or More Tables

read-only
amazon-dynamodb-put-delete-multiple

Amazon DynamoDB Put or Delete Multiple Items in One or More Tables

Capability Spec

amazon-dynamodb-batch.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon DynamoDB API — Batch
  description: 'Amazon DynamoDB API — Batch. 2 operations. Lead operation: Amazon DynamoDB Get Multiple Items from One or
    More Tables. Self-contained Naftiko capability covering one Amazon Dynamodb business surface.'
  tags:
  - Amazon Dynamodb
  - Batch
  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-batch
    baseUri: https://dynamodb.{region}.amazonaws.com
    description: Amazon DynamoDB API — Batch business capability. Self-contained, no shared references.
    resources:
    - name: '#BatchGetItem'
      path: /#BatchGetItem
      operations:
      - name: batchgetitem
        method: POST
        description: Amazon DynamoDB Get Multiple Items from One or More Tables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: '#BatchWriteItem'
      path: /#BatchWriteItem
      operations:
      - name: batchwriteitem
        method: POST
        description: Amazon DynamoDB Put or Delete Multiple Items in One or More Tables
        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-batch-rest
    port: 8080
    description: REST adapter for Amazon DynamoDB API — Batch. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/batchgetitem
      name: batchgetitem
      description: 'REST surface for #BatchGetItem.'
      operations:
      - method: POST
        name: batchgetitem
        description: Amazon DynamoDB Get Multiple Items from One or More Tables
        call: amazon-dynamodb-batch.batchgetitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/batchwriteitem
      name: batchwriteitem
      description: 'REST surface for #BatchWriteItem.'
      operations:
      - method: POST
        name: batchwriteitem
        description: Amazon DynamoDB Put or Delete Multiple Items in One or More Tables
        call: amazon-dynamodb-batch.batchwriteitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-dynamodb-batch-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon DynamoDB API — Batch. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: amazon-dynamodb-get-multiple-items
      description: Amazon DynamoDB Get Multiple Items from One or More Tables
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: amazon-dynamodb-batch.batchgetitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-dynamodb-put-delete-multiple
      description: Amazon DynamoDB Put or Delete Multiple Items in One or More Tables
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-dynamodb-batch.batchwriteitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.