DynamoDB MCP Server

scan_table

Scans an entire table with optional filters

Input Schema

NameRequiredDescriptionDefault
expressionAttributeNamesNoAttribute name mappings
expressionAttributeValuesNoValues for the filter expression
filterExpressionNoFilter expression
limitNoMaximum number of items to return
tableNameYesName of the table

Input Schema (JSON Schema)

{ "properties": { "expressionAttributeNames": { "description": "Attribute name mappings", "optional": true, "type": "object" }, "expressionAttributeValues": { "description": "Values for the filter expression", "optional": true, "type": "object" }, "filterExpression": { "description": "Filter expression", "optional": true, "type": "string" }, "limit": { "description": "Maximum number of items to return", "optional": true, "type": "number" }, "tableName": { "description": "Name of the table", "type": "string" } }, "required": [ "tableName" ], "type": "object" }