← Index

com.pulsemcp/dynamodb

com.pulsemcp/dynamodb·v0.2.6·AWS
Quality Score
80
/100

MCP server for AWS DynamoDB with fine-grained tool control and configurable access levels.

§00  Trust verdict · v1 advisory ·  method
UNVERIFIEDno verdict on file

Verdict not yet evaluated for this tool. The hybrid eval runs adversarial cases first; coverage rolls out as the corpus expands. Until a verdict is recorded, an agent should treat this tool as not-yet-cleared and fall back to its own checks. Method: hybrid eval, four-state verdict, honest limits.

§01  Install
Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "dynamodb": {
      "command": "npx",
      "args": [
        "-y",
        "aws-dynamodb-mcp-server"
      ],
      "env": {
        "AWS_REGION": "<aws_region>",
        "AWS_ACCESS_KEY_ID": "<your-aws_access_key_id>",
        "AWS_SECRET_ACCESS_KEY": "<your-aws_secret_access_key>",
        "DYNAMODB_ENDPOINT": "<dynamodb_endpoint>",
        "DYNAMODB_ENABLED_TOOL_GROUPS": "<dynamodb_enabled_tool_groups>",
        "DYNAMODB_ENABLED_TOOLS": "<dynamodb_enabled_tools>",
        "DYNAMODB_DISABLED_TOOLS": "<dynamodb_disabled_tools>",
        "DYNAMODB_ALLOWED_TABLES": "<dynamodb_allowed_tables>",
        "SKIP_HEALTH_CHECKS": "false"
      }
    }
  }
}
Cursor (.cursor/mcp.json)
{
  "mcpServers": {
    "dynamodb": {
      "command": "npx",
      "args": [
        "-y",
        "aws-dynamodb-mcp-server"
      ],
      "env": {
        "AWS_REGION": "<aws_region>",
        "AWS_ACCESS_KEY_ID": "<your-aws_access_key_id>",
        "AWS_SECRET_ACCESS_KEY": "<your-aws_secret_access_key>",
        "DYNAMODB_ENDPOINT": "<dynamodb_endpoint>",
        "DYNAMODB_ENABLED_TOOL_GROUPS": "<dynamodb_enabled_tool_groups>",
        "DYNAMODB_ENABLED_TOOLS": "<dynamodb_enabled_tools>",
        "DYNAMODB_DISABLED_TOOLS": "<dynamodb_disabled_tools>",
        "DYNAMODB_ALLOWED_TABLES": "<dynamodb_allowed_tables>",
        "SKIP_HEALTH_CHECKS": "false"
      }
    }
  }
}
Cline (cline_mcp_settings.json)
npx -y aws-dynamodb-mcp-server
§02  Environment variables
AWS_REGION
required

AWS region for DynamoDB (or use AWS_DEFAULT_REGION).

AWS_ACCESS_KEY_ID
secret

AWS access key ID (uses AWS credential chain if not set).

AWS_SECRET_ACCESS_KEY
secret

AWS secret access key (uses AWS credential chain if not set).

DYNAMODB_ENDPOINT

Custom endpoint for local DynamoDB or LocalStack.

DYNAMODB_ENABLED_TOOL_GROUPS

Comma-separated tool groups to enable (readonly, readwrite, admin).

DYNAMODB_ENABLED_TOOLS

Comma-separated whitelist of specific tools to enable.

DYNAMODB_DISABLED_TOOLS

Comma-separated blacklist of specific tools to disable.

DYNAMODB_ALLOWED_TABLES

Restrict operations to specific tables (comma-separated); all tables accessible if not set.

SKIP_HEALTH_CHECKS

Skip startup health checks.

§03  MCP Quality Score  ·  methodology
freshness
25
completeness
10
installability
25
documentation
15
stability
5
§04  Alternatives in AWS