DynamoDB Read-Only MCP
@jjikky
关于 DynamoDB Read-Only MCP
AWS DynamoDB Read-Only MCP Server
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"dynamo-readonly-mcp": {
"command": "npx",
"args": [
"-y",
"@smithery/cli",
"install",
"@jjikky/dynamo-readonly-mcp",
"--client",
"claude"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is DynamoDB Read-Only MCP?
A server that utilizes the Model Context Protocol (MCP) to query AWS DynamoDB databases. It allows LLMs like Claude to query DynamoDB data through natural language requests.
How to use DynamoDB Read-Only MCP?
Install via npm (npm install from cloned repo or npx -y dynamo-readonly-mcp), then set AWS credentials (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION) in a .env file or environment variables. Build with npm run build and start with npm start. Connect to Claude Desktop by adding a server entry to claude_desktop_config.json pointing to the built index.js or using npx directly.
Key features of DynamoDB Read-Only MCP
- Table management: list-tables, describe-table
- Data query tools: scan-table, query-table, paginate-query-table, get-item, count-items
- Resources: dynamodb-tables-info, dynamodb-table-schema
- Prompt template: dynamodb-query-help for writing queries
- Read-only access to DynamoDB data
Use cases of DynamoDB Read-Only MCP
- Ask an LLM to list all DynamoDB tables and their structures
- Query table data by specifying conditions in natural language
- Count items in a table matching a given group ID
- Paginate through large result sets with paginate-query-table
- Retrieve a single item by its key using get-item
FAQ from DynamoDB Read-Only MCP
What tools does the server provide?
The server provides list-tables, describe-table, scan-table, query-table, paginate-query-table, get-item, and count-items.
How do I configure AWS credentials?
Set AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and AWS_REGION either in a .env file or as environment variables in the Claude Desktop configuration.
Is the server read-only?
Yes, all tools and resources are designed for read-only queries; no write operations are exposed.
What transport does the MCP server use?
It uses StdioServerTransport, communicating via standard input/output with the client.
Is there a built-in prompt for help?
Yes, the dynamodb-query-help prompt provides guidance for writing DynamoDB queries.
数据库 分类下的更多 MCP 服务器
Multi Database MCP Server
FreePeakA powerful multi-database server implementing the Model Context Protocol (MCP) to provide AI assistants with structured access to databases.
MySQL MCP Server
designcomputerA Model Context Protocol (MCP) server that enables secure interaction with MySQL databases
MongoDB MCP Server
mongodb-jsA Model Context Protocol server to connect to MongoDB databases and MongoDB Atlas Clusters.
Sail MCP Server for Spark SQL
lakehqDrop-in Apache Spark replacement written in Rust, unifying batch processing, stream processing, and compute-intensive AI workloads.
评论