list_tables
Retrieve a list of DynamoDB tables in your account, with options for pagination and limiting results, using the DynamoDB MCP Server.
Instructions
Lists all DynamoDB tables in the account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exclusiveStartTableName | No | Name of the table to start from for pagination (optional) | |
limit | No | Maximum number of tables to return (optional) |
Input Schema (JSON Schema)
{
"properties": {
"exclusiveStartTableName": {
"description": "Name of the table to start from for pagination (optional)",
"type": "string"
},
"limit": {
"description": "Maximum number of tables to return (optional)",
"type": "number"
}
},
"type": "object"
}