A DynamoDB emulator with an MCP server exposing 35 DynamoDB tools to coding agents.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y dynoxide
MCP client config
{
"mcpServers": {
"dynoxide": {
"command": "npx",
"args": [
"-y",
"dynoxide"
]
}
}
}Run
docker run -i --rm ghcr.io/nubo-db/dynoxide:1.1.0
MCP client config
{
"mcpServers": {
"dynoxide": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nubo-db/dynoxide:1.1.0"
]
}
}
}