Skip to main content
Glama

dynamodb_table_list

List all DynamoDB tables in your AWS account to manage and monitor database resources.

Instructions

List all DynamoDB tables

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Executes the DynamoDB list_tables() operation to retrieve the list of all tables.
    elif name == "dynamodb_table_list":
        response = dynamodb_client.list_tables()
  • Defines the input schema (empty object since no parameters required) and metadata for the dynamodb_table_list tool.
    Tool(
        name="dynamodb_table_list",
        description="List all DynamoDB tables",
        inputSchema={
            "type": "object",
            "properties": {}
        }
    ),
  • Registers the dynamodb_table_list tool (among others) with the MCP server by returning the list of AWS tools.
    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