Query, put, update, delete, and scan items in Amazon DynamoDB tables — AI-native NoSQL database access for any agent.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"dynamodb": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-dynamodb",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify aws dynamodb connectivity by listing tables. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Query, put, update, delete, and scan items in Amazon DynamoDB tables — AI-native NoSQL database access for any agent.
Give your AI agents full access to Amazon DynamoDB. List tables, inspect schemas and indexes, query by partition key with sort key filters, scan with expressions, and perform CRUD operations — all through natural language.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-dynamodb
| Tool | Description |
|---|---|
_ping | Verify DynamoDB connectivity by listing tables |
list_tables | List all DynamoDB tables in the account |
describe_table | Get table info — key schema, indexes, item count, size, billing |
get_item | Retrieve a single item by primary key |
put_item | Insert or replace an item with full attributes |
query | Query items by key condition with filters and index support |
scan | Scan entire table or index with optional filter expression |
update_item | Update specific attributes with SET/REMOVE expressions |
delete_item | Delete a single item by primary key |
| Variable | Required | Description | How to Get |
|---|---|---|---|
AWS_ACCESS_KEY_ID | Yes | AWS IAM access key with DynamoDB permissions | console.aws.amazon.com → IAM → Users → Security credentials → Create access key |
AWS_SECRET_ACCESS_KEY | Yes | AWS IAM secret key (shown once at creation) | Created with the access key above |
AWS_REGION | No | AWS region (default: us-east-1) | The region where your DynamoDB tables are located |
Recommended IAM Policy: Attach
AmazonDynamoDBFullAccessfor full access, or scope to specific tables with a custom policy.
AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and optionally AWS_REGION under Project → Secrets"List all my DynamoDB tables"
"Describe the Users table and show me its key schema and indexes"
"Get the user with userId = 'abc123' from the Users table"
"Query all orders for customer 'cust-42' from the last 30 days"
"Scan the Products table for items where price > 100"
"Update the user 'abc123' — set name to 'Alice' and remove old_field"
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-dynamodb \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-AWS-ACCESS-KEY-ID: AKIA...' \
-H 'X-Mcp-Secret-AWS-SECRET-ACCESS-KEY: wJalr...' \
-H 'X-Mcp-Secret-AWS-REGION: us-east-1' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_tables","arguments":{}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-dynamodb
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Turn your Airtable bases into an AI-queryable database — create, update, search, and analyze records with natural language.
by @aerostack
Pages, databases, blocks, search via Notion's official MCP
by @aerostack
Query collections, insert documents, and run aggregation pipelines on your MongoDB Atlas database — AI-native document database access.
by @aerostack
Get, set, and manage keys, hashes, and lists in your Upstash Redis database — AI-native key-value store access.
by @aerostack
Query Postgres tables, manage storage buckets, and interact with your Supabase backend — AI-native database access.
by @aerostack
Execute SQL queries, manage tables, and interact with your Turso (LibSQL) edge database — AI-native SQLite at the edge.
The Dynamodb MCP gives Claude 8 tools covering items, tables. Claude can read, create, update, and manage Dynamodb data directly from a conversation.
Yes. The Dynamodb MCP includes tools to list and retrieve tables from your Dynamodb account. Claude can filter, sort, and summarize tables based on your instructions.
Yes. The Dynamodb MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 8 Dynamodb tools are available everywhere you connect it — install once on Aerostack.
Yes. The Dynamodb MCP includes tools to update items in your Dynamodb account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Dynamodb API.