Skip to main content
Glama

dynamodb_table_describe

Retrieve detailed configuration and metadata for a specific DynamoDB table to understand its structure, settings, and current status.

Instructions

Get details about a DynamoDB table

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
table_nameYesName of the DynamoDB table

Implementation Reference

  • Executes the core logic of the dynamodb_table_describe tool by invoking the AWS DynamoDB describe_table API with the provided table name.
    elif name == "dynamodb_table_describe":
        response = dynamodb_client.describe_table(
            TableName=arguments["table_name"])
  • Defines the tool's name, description, and input schema requiring a 'table_name' parameter.
    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"]
        }
    ),
  • Registers all AWS tools, including dynamodb_table_describe, with the MCP server via the list_tools handler.
    async def list_tools() -> list[Tool]:
        """List available AWS tools"""
        logger.debug("Handling list_tools request")
        return get_aws_tools()

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