dynamodb_item_query
Query specific items in a DynamoDB table using key conditions and expression attributes. Execute commands through natural language on the AWS MCP Server.
Instructions
Query items in a DynamoDB table
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| expression_values | Yes | Expression attribute values | |
| key_condition | Yes | Key condition expression | |
| table_name | Yes | Name of the DynamoDB table | 
Input Schema (JSON Schema)
{
  "properties": {
    "expression_values": {
      "description": "Expression attribute values",
      "type": "object"
    },
    "key_condition": {
      "description": "Key condition expression",
      "type": "string"
    },
    "table_name": {
      "description": "Name of the DynamoDB table",
      "type": "string"
    }
  },
  "required": [
    "table_name",
    "key_condition",
    "expression_values"
  ],
  "type": "object"
}