DynamoDB MCP Server

put_item

Inserts or replaces an item in a table

Input Schema

NameRequiredDescriptionDefault
itemYesItem to put into the table
tableNameYesName of the table

Input Schema (JSON Schema)

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