Skip to main content
Glama

dynamodb_table_describe

Retrieve detailed information about a DynamoDB table by specifying its name. This tool helps users understand table structure, settings, and metadata for effective data management.

Instructions

Get details about a DynamoDB table

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
table_nameYesName of the DynamoDB table

Implementation Reference

  • Executes the DynamoDB describe_table operation using the boto3 client with the user-provided table_name argument.
    elif name == "dynamodb_table_describe": response = dynamodb_client.describe_table( TableName=arguments["table_name"])
  • Defines the input schema for the tool, which requires a single 'table_name' string property.
    inputSchema={ "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" } }, "required": ["table_name"] }
  • Registers the tool in the get_dynamodb_tools() function by creating and returning the Tool object with name, description, and schema.
    Tool( name="dynamodb_table_describe", description="Get details about a DynamoDB table", inputSchema={ "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" } }, "required": ["table_name"] } ),

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rishikavikondala/mcp-server-aws'

If you have feedback or need assistance with the MCP directory API, please join our Discord server