D
DynamoDB
Query and update AWS DynamoDB tables.
·No reviews yet
Share:
About
Auto-generated
DynamoDB is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about DynamoDB.
- What does the DynamoDB MCP server enable?
- This MCP server allows you to query and update Amazon DynamoDB tables. It provides a standardized interface for interacting with DynamoDB services from various clients.
- How do I configure this MCP in a client like Cline?
- Configuration typically involves adding the MCP server's transport and credentials to your client's settings. For this server, you would specify 'stdio' as the transport and provide an API key.
- Does this MCP require credentials?
- Yes, this MCP server requires an API key for authentication. This key grants the necessary permissions to interact with your AWS DynamoDB resources.
- What are the typical use cases for this DynamoDB MCP?
- Typical use cases include performing CRUD operations on DynamoDB tables, such as retrieving data, inserting new items, updating existing records, and deleting entries using a client application.
- What is the cost associated with using the DynamoDB MCP server?
- The MCP server itself is community-provided, implying no direct cost for the server software. However, usage incurs standard AWS DynamoDB service costs based on your read, write, and storage consumption.
- Are there any prerequisites for using this MCP?
- Yes, a prerequisite is an active AWS account with provisioned DynamoDB tables and an API key with appropriate permissions for accessing those tables.
Install DynamoDB
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"dynamodb": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dynamodb"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"dynamodb": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dynamodb"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"dynamodb": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dynamodb"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.