DynamoDB MCP Server

get_item

Retrieves an item from a table by its primary key

Input Schema

NameRequiredDescriptionDefault
keyYesPrimary key of the item to retrieve
tableNameYesName of the table

Input Schema (JSON Schema)

{ "properties": { "key": { "description": "Primary key of the item to retrieve", "type": "object" }, "tableName": { "description": "Name of the table", "type": "string" } }, "required": [ "tableName", "key" ], "type": "object" }