Skip to main content
Glama

DynamoDB MCP Server

by imankamyabi

create_table

Create a new DynamoDB table with custom partition key, sort key, and provisioned read/write capacity using the DynamoDB MCP Server tool.

Instructions

Creates a new DynamoDB table with specified configuration

Input Schema

NameRequiredDescriptionDefault
partitionKeyYesName of the partition key
partitionKeyTypeYesType of partition key (S=String, N=Number, B=Binary)
readCapacityYesProvisioned read capacity units
sortKeyNoName of the sort key (optional)
sortKeyTypeNoType of sort key (optional)
tableNameYesName of the table to create
writeCapacityYesProvisioned write capacity units

Input Schema (JSON Schema)

{ "properties": { "partitionKey": { "description": "Name of the partition key", "type": "string" }, "partitionKeyType": { "description": "Type of partition key (S=String, N=Number, B=Binary)", "enum": [ "S", "N", "B" ], "type": "string" }, "readCapacity": { "description": "Provisioned read capacity units", "type": "number" }, "sortKey": { "description": "Name of the sort key (optional)", "type": "string" }, "sortKeyType": { "description": "Type of sort key (optional)", "enum": [ "S", "N", "B" ], "type": "string" }, "tableName": { "description": "Name of the table to create", "type": "string" }, "writeCapacity": { "description": "Provisioned write capacity units", "type": "number" } }, "required": [ "tableName", "partitionKey", "partitionKeyType", "readCapacity", "writeCapacity" ], "type": "object" }
Install Server

Other Tools from DynamoDB MCP Server

Related Tools

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/imankamyabi/dynamodb-mcp-server'

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