Skip to main content
Glama

DynamoDB Scanner

by katpyeon
smithery.yaml1.21 kB
# Smithery configuration file: https://smithery.ai/docs/build/project-config startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - dynamoTableName - awsAccessKeyId - awsSecretAccessKey properties: dynamoTableName: type: string description: DynamoDB table name to scan awsAccessKeyId: type: string description: AWS access key ID awsSecretAccessKey: type: string description: AWS secret access key awsRegion: type: string default: ap-northeast-2 description: AWS region commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => ({ command: 'python', args: ['app.py'], env: { DYNAMO_TABLE_NAME: config.dynamoTableName, AWS_ACCESS_KEY_ID: config.awsAccessKeyId, AWS_SECRET_ACCESS_KEY: config.awsSecretAccessKey, AWS_REGION: config.awsRegion } }) exampleConfig: dynamoTableName: MyTestTable awsAccessKeyId: AKIAEXAMPLEKEYID awsSecretAccessKey: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY awsRegion: us-west-2

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/katpyeon/mcp_dynamodb_scan'

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