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.
「データベース」の他のコンテンツ

Redis
modelcontextprotocolModel Context Protocol Servers
MCP Server for MySQL based on NodeJS
benborlaA Model Context Protocol server that provides read-only access to MySQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.
mcp_mysql_server
wenb1n-devModel Context Protocol (MCP) server that supports secure interaction with MySQL databases and has anomaly analysis capabilities.更加牛逼!更加好用!不仅止于mysql的增删改查功能; 还包含了数据库异常分析能力;且便于开发者们进行个性化的工具扩展
MCP Server for Milvus
zilliztechModel Context Protocol Servers for Milvus
MongoDB Lens
furey🍃🔎 MongoDB Lens: Full Featured MCP Server for MongoDB Databases
コメント