AWS MCP Server

dynamodb_item_batch_write

Batch write operations (put/delete) for DynamoDB items

Input Schema

NameRequiredDescriptionDefault
itemsYesArray of items to process
key_attributesNoFor delete operations, specify which attributes form the key
operationYesType of batch operation (put or delete)
table_nameYesName of the DynamoDB table

Input Schema (JSON Schema)

{ "properties": { "items": { "description": "Array of items to process", "type": "array" }, "key_attributes": { "description": "For delete operations, specify which attributes form the key", "items": { "type": "string" }, "type": "array" }, "operation": { "description": "Type of batch operation (put or delete)", "enum": [ "put", "delete" ], "type": "string" }, "table_name": { "description": "Name of the DynamoDB table", "type": "string" } }, "required": [ "table_name", "operation", "items" ], "type": "object" }