Skip to main content
Glama

list_dynamodb_tables

Retrieve a list of DynamoDB tables from AWS to manage and monitor your database resources.

Instructions

Lists DynamoDB tables.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler function that lists DynamoDB tables using ListTablesCommand and returns the table names.
    if (name === "list_dynamodb_tables") { const command = new ListTablesCommand({}); const response = await dynamoDbClient.send(command); return { content: [{ type: "text", text: JSON.stringify(response.TableNames || [], null, 2) }] }; }
  • src/index.ts:772-776 (registration)
    Tool registration in the ListTools response, including name, description, and input schema.
    { name: "list_dynamodb_tables", description: "Lists DynamoDB tables.", inputSchema: { "type": "object", "properties": {} } },
  • Input schema definition: empty object (no parameters).
    inputSchema: { "type": "object", "properties": {} }
  • DynamoDB client initialization used by the handler.
    const dynamoDbClient = new DynamoDBClient({});
  • Import for DynamoDB client and ListTablesCommand.
    import { DynamoDBClient, ListTablesCommand, DescribeTableCommand } from "@aws-sdk/client-dynamodb";

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/Bhavesh8890/MCP-server'

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