AWS MCP Server

dynamodb_item_put

Put an item into a DynamoDB table

Input Schema

NameRequiredDescriptionDefault
itemYesItem data to put
table_nameYesName of the DynamoDB table

Input Schema (JSON Schema)

{ "properties": { "item": { "description": "Item data to put", "type": "object" }, "table_name": { "description": "Name of the DynamoDB table", "type": "string" } }, "required": [ "table_name", "item" ], "type": "object" }