Dynamodb MCP Server — Hosted Database Integration
MCP Server language Hosted language PublicQuery, 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.
description Overview
mcp-dynamodb — Amazon DynamoDB MCP Server
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
What You Can Do
- List all DynamoDB tables in your account
- Inspect table schemas, key definitions, GSIs, LSIs, and billing mode
- Get items by primary key (partition + sort key)
- Query items using key conditions with optional sort key ranges
- Scan tables with filter expressions
- Put (insert/replace) items with full attribute control
- Update specific attributes using SET, REMOVE, ADD, DELETE expressions
- Delete items by primary key with optional conditions
- Query global and local secondary indexes
Available Tools
| 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 |
Configuration
| 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.
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "DynamoDB" and click Add to Workspace
- Add
AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY, and optionallyAWS_REGIONunder Project → Secrets
Example Prompts
"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"
Direct API Call
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":{}}}'
Security Notes
- AWS credentials are injected at the Aerostack gateway layer — never stored in the worker
- Query and scan results are limited to 500 items maximum per call
- Use condition expressions on update/delete to prevent accidental overwrites
- Consider scoping IAM policies to specific tables and operations
License
MIT
terminal Tools (9)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
_ping #1 Verify AWS DynamoDB connectivity by listing tables. Used internally by Aerostack to validate credentials.
list_tables #2 List all DynamoDB tables in the AWS account with optional pagination
describe_table #3 Get detailed information about a DynamoDB table — key schema, indexes, item count, size, and billing mode
get_item #4 Retrieve a single item from a DynamoDB table by its primary key (partition key + optional sort key)
put_item #5 Insert or replace an item in a DynamoDB table. Provide the full item as a JSON object including the primary key.
query #6 Query items from a DynamoDB table using a key condition expression on the partition key and optional sort key filter
scan #7 Scan an entire DynamoDB table or index with optional filter expression. Use sparingly — prefer query when possible.
update_item #8 Update specific attributes of an existing item using an update expression (SET, REMOVE, ADD, DELETE operations)
delete_item #9 Delete a single item from a DynamoDB table by its primary key
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-dynamodb
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in Database
Browse Database MCPs →Airtable
by @aerostack
Turn your Airtable bases into an AI-queryable database — create, update, search, and analyze records with natural language.
Notion Workspace
by @aerostack
Pages, databases, blocks, search via Notion's official MCP
Mongodb
by @aerostack
Query collections, insert documents, and run aggregation pipelines on your MongoDB Atlas database — AI-native document database access.
Redis
by @aerostack
Get, set, and manage keys, hashes, and lists in your Upstash Redis database — AI-native key-value store access.
Supabase
by @aerostack
Query Postgres tables, manage storage buckets, and interact with your Supabase backend — AI-native database access.
Turso
by @aerostack
Execute SQL queries, manage tables, and interact with your Turso (LibSQL) edge database — AI-native SQLite at the edge.
Frequently asked questions
What is the Dynamodb MCP server and what can it do? +
The Dynamodb MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_tables`, `describe_table`, `get_item`, `put_item`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Dynamodb MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Dynamodb MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Dynamodb MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Dynamodb MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-dynamodb": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-dynamodb"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Dynamodb MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-dynamodb", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-dynamodb"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Dynamodb MCP require authentication? +
Yes. Dynamodb requires authentication. Check the MCP's documentation for the required credentials.