Rds Management MCP Server

The official MCP Server for managing AWS RDS database resources. This server provides comprehensive tools for creating, modifying, deleting, and

Local serverstdioPython

What is the Rds Management MCP server?

Rds Management MCP server exists for a simple reason — assistants are far more useful when they can act on Rds Management directly instead of describing what you should do. The official MCP Server for managing AWS RDS database resources. This server provides comprehensive tools for creating, modifying, deleting, and managing Amazon RDS database instances and clusters.

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What the assistant can call

Once Rds Management is connected, these are the calls the assistant has available:

  • CreateDBCluster — Create a new Amazon RDS database cluster
  • ModifyDBCluster — Modify an existing RDS database cluster configuration
  • DeleteDBCluster — Delete an RDS database cluster
  • ChangeDBClusterStatus — Start, stop, or reboot a DB cluster
  • FailoverDBCluster — Force a failover for an RDS database cluster
  • CreateDBClusterSnapshot — Create a snapshot of a DB cluster
  • DeleteDBClusterSnapshot — Delete a DB cluster snapshot
  • RestoreDBClusterFromSnapshot — Restore a DB cluster from a snapshot
  • RestoreDBClusterToPointInTime — Restore a DB cluster to a point in time
  • DescribeDBClusters — Retrieve information about RDS database clusters
  • CreateDBInstance — Create a new Amazon RDS database instance
  • ModifyDBInstance — Modify an existing RDS database instance

Configuration and credentials

You will need 6 environment variables: AWS_PROFILE, AWS_REGION, FASTMCP_LOG_LEVEL, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN. 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.

  1. Install uv from Astral or the GitHub README 2. Install Python using uv python install 3.10 3. Set up AWS credentials with access to RDS services - Consider setting up Read-only permission if you don't want the LLM to modify any resources

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.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Rds Management.
  • 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 rds management mcp server does with a few real requests.

Choosing this one

Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Rds Management's toolset — CreateDBCluster, ModifyDBCluster, DeleteDBCluster and 11 more — is a fair guide to whether it matches your workflow. It is maintained by aws-rds-mcp; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
CreateDBClusterCreate a new Amazon RDS database cluster
ModifyDBClusterModify an existing RDS database cluster configuration
DeleteDBClusterDelete an RDS database cluster
ChangeDBClusterStatusStart, stop, or reboot a DB cluster
FailoverDBClusterForce a failover for an RDS database cluster
CreateDBClusterSnapshotCreate a snapshot of a DB cluster
DeleteDBClusterSnapshotDelete a DB cluster snapshot
RestoreDBClusterFromSnapshotRestore a DB cluster from a snapshot
RestoreDBClusterToPointInTimeRestore a DB cluster to a point in time
DescribeDBClustersRetrieve information about RDS database clusters
CreateDBInstanceCreate a new Amazon RDS database instance
ModifyDBInstanceModify an existing RDS database instance
DeleteDBInstanceDelete an RDS database instance
ManageDBInstanceStatusStart, stop, or reboot a DB instance

How to install the Rds Management MCP server

{
  "mcpServers": {
    "awslabs.rds-management-mcp-server": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/rds-management",
        "run",
        "main.py"
      ],
      "env": {
        "AWS_PROFILE": "default",
        "AWS_REGION": "us-west-2",
        "FASTMCP_LOG_LEVEL": "ERROR"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  1. Install uv from Astral or the GitHub README 2. Install Python using uv python install 3.10 3. Set up AWS credentials with access to RDS services - Consider setting up Read-only permission if you don't want the LLM to modify any resources
VariableDescriptionRequired
AWS_PROFILEConfiguration value read at startup.Optional
AWS_REGIONConfiguration value read at startup.Optional
FASTMCP_LOG_LEVELConfiguration value read at startup.Optional
AWS_ACCESS_KEY_IDCredential the server authenticates with.Yes
AWS_SECRET_ACCESS_KEYCredential the server authenticates with.Yes
AWS_SESSION_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Rds Management to CreateDBCluster.
  • Use Rds Management to ModifyDBCluster.
  • Use Rds Management to DeleteDBCluster.

Frequently asked questions

It connects Rds Management to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (CreateDBCluster, ModifyDBCluster, DeleteDBCluster, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Rds Management directly.