Amazon DynamoDB · Capability

Amazon DynamoDB API — PartiQL

Amazon DynamoDB API — PartiQL. 3 operations. Lead operation: Amazon Dynamodb Execute Multiple Partiql Statements in a Batch. Self-contained Naftiko capability covering one Dynamodb business surface.

Run with Naftiko DynamodbPartiQL

What You Can Do

POST
Batchexecutestatement — Amazon Dynamodb Execute Multiple Partiql Statements in a Batch
/v1/batchexecutestatement
POST
Executestatement — Amazon Dynamodb Execute a Partiql Statement
/v1/executestatement
POST
Executetransaction — Amazon Dynamodb Execute Partiql Statements in a Transaction
/v1/executetransaction

MCP Tools

amazon-dynamodb-execute-multiple-partiql

Amazon Dynamodb Execute Multiple Partiql Statements in a Batch

amazon-dynamodb-execute-partiql-statement

Amazon Dynamodb Execute a Partiql Statement

amazon-dynamodb-execute-partiql-statements

Amazon Dynamodb Execute Partiql Statements in a Transaction

Capability Spec

dynamodb-partiql.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon DynamoDB API — PartiQL
  description: 'Amazon DynamoDB API — PartiQL. 3 operations. Lead operation: Amazon Dynamodb Execute Multiple Partiql Statements
    in a Batch. Self-contained Naftiko capability covering one Dynamodb business surface.'
  tags:
  - Dynamodb
  - PartiQL
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DYNAMODB_API_KEY: DYNAMODB_API_KEY
capability:
  consumes:
  - type: http
    namespace: dynamodb-partiql
    baseUri: https://dynamodb.{region}.amazonaws.com
    description: Amazon DynamoDB API — PartiQL business capability. Self-contained, no shared references.
    resources:
    - name: '#BatchExecuteStatement'
      path: /#BatchExecuteStatement
      operations:
      - name: batchexecutestatement
        method: POST
        description: Amazon Dynamodb Execute Multiple Partiql Statements in a Batch
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: '#ExecuteStatement'
      path: /#ExecuteStatement
      operations:
      - name: executestatement
        method: POST
        description: Amazon Dynamodb Execute a Partiql Statement
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: '#ExecuteTransaction'
      path: /#ExecuteTransaction
      operations:
      - name: executetransaction
        method: POST
        description: Amazon Dynamodb Execute Partiql Statements in a Transaction
        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-partiql-rest
    port: 8080
    description: REST adapter for Amazon DynamoDB API — PartiQL. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/batchexecutestatement
      name: batchexecutestatement
      description: 'REST surface for #BatchExecuteStatement.'
      operations:
      - method: POST
        name: batchexecutestatement
        description: Amazon Dynamodb Execute Multiple Partiql Statements in a Batch
        call: dynamodb-partiql.batchexecutestatement
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/executestatement
      name: executestatement
      description: 'REST surface for #ExecuteStatement.'
      operations:
      - method: POST
        name: executestatement
        description: Amazon Dynamodb Execute a Partiql Statement
        call: dynamodb-partiql.executestatement
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/executetransaction
      name: executetransaction
      description: 'REST surface for #ExecuteTransaction.'
      operations:
      - method: POST
        name: executetransaction
        description: Amazon Dynamodb Execute Partiql Statements in a Transaction
        call: dynamodb-partiql.executetransaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: dynamodb-partiql-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon DynamoDB API — PartiQL. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: amazon-dynamodb-execute-multiple-partiql
      description: Amazon Dynamodb Execute Multiple Partiql Statements in a Batch
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: dynamodb-partiql.batchexecutestatement
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-dynamodb-execute-partiql-statement
      description: Amazon Dynamodb Execute a Partiql Statement
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: dynamodb-partiql.executestatement
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-dynamodb-execute-partiql-statements
      description: Amazon Dynamodb Execute Partiql Statements in a Transaction
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: dynamodb-partiql.executetransaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.