describe-table
Retrieve comprehensive details about a DynamoDB table, including schema and configuration, by specifying its name using this tool on the DynamoDB Read-Only MCP server.
Instructions
Get detailed information about a DynamoDB table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to get details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tableName": {
"description": "Name of the table to get details for",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}