Dynamo Readonly MCP Server

DynamoDB Readonly MCP Server

Local serverstdio

What is the Dynamo Readonly MCP MCP server?

Dynamo Readonly MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. DynamoDB Readonly MCP Server.

What you get

A server that utilizes the Model Context Protocol (MCP) to query AWS DynamoDB databases. This server allows LLMs like Claude to query DynamoDB data through natural language requests.

  • Table Management Tools —
  • list-tables: View a list of all DynamoDB tables
  • describe-table: View detailed information about a specific table
  • Data Query Tools —
  • scan-table: Scan all or part of a table's data
  • query-table: Search for data that matches specific conditions in a table

What the assistant can call

Once Dynamo Readonly MCP is connected, these are the calls the assistant has available:

  • Installation — The Installation tool exposed by this server

Setting it up

The server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Configuration and credentials

You will need 3 environment variables: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Dynamo Readonly MCP's toolset — Installation — is a fair guide to whether it matches your workflow. It is maintained by jjikky; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the dynamo readonly mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
InstallationThe Installation tool exposed by this server.

How to install the Dynamo Readonly MCP MCP server

{
  "mcpServers": {
    "dynamo-readonly": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "AWS_ACCESS_KEY_ID": "your-value",
        "AWS_SECRET_ACCESS_KEY": "your-value",
        "AWS_REGION": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
AWS_ACCESS_KEY_IDCredential the server authenticates with.Yes
AWS_SECRET_ACCESS_KEYCredential the server authenticates with.Yes
AWS_REGIONConfiguration value read at startup.Optional

Example prompts to try

  • Use Dynamo Readonly MCP to Installation.

Frequently asked questions

It connects Dynamo Readonly MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Installation) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Dynamo Readonly MCP directly.