AWS Labs Aurora DSQL MCP Server
An AWS Labs Model Context Protocol (MCP) server for Aurora DSQL and corresponding AI rules that can be used for additional model steering while developing.
Features
- Converting human-readable questions and commands into structured Postgres-compatible SQL queries and executing them against the configured Aurora DSQL database.
- Read-only by default, transactions enabled with
--allow-writes - Connection reuse between requests for improved performance
- Built-in access to Aurora DSQL documentation, search, and best practice recommendations
Available Tools
Database Operations
[IMPORTANT] The MCP Server requires a valid configuration for --cluster_endpoint, --database_user, and --region to enable database operations.
- readonly_query - Execute read-only SQL queries against your DSQL cluster
- transact - Execute SQL statements in a transaction
- In read-only mode: Supports read operations with transactional consistency
- With
--allow-writes: Supports all write operations too
- get_schema - Retrieve table schema information
Documentation and Recommendations
- dsql_search_documentation - Search Aurora DSQL documentation
- Parameters:
search_phrase(required),limit(optional)
- Parameters:
- dsql_read_documentation - Read specific DSQL documentation pages
- Parameters:
url(required),start_index(optional),max_length(optional)
- Parameters:
- dsql_recommend - Get recommendations for DSQL best practices
- Parameters:
url(required)
- Parameters:
SQL Validation
- dsql_lint - Validate SQL for Aurora DSQL compatibility and optionally auto-fix issues
- Parameters:
sql(required),fix(optional, default false) - Returns diagnostics with rule violations, suggestions, and optionally a fixed SQL string
- Parameters:
Prerequisites
- An AWS account with an Aurora DSQL Cluster
- This MCP server can only be run locally on the same host as your LLM client.
- Set up AWS credentials with access to AWS services
- You need an AWS account with appropriate permissions
- Configure AWS credentials with
aws configureor environment variables
Installation
| Kiro | Cursor | VS Code |
|---|---|---|
Using uv
- Install
uvfrom Astral or the GitHub README - Install Python using
uv python install 3.10
Configure the MCP server in your MCP client configuration (e.g., for Kiro, edit ~/.kiro/settings/mcp.json):
{
"mcpServers": {
"awslabs.aurora-dsql-mcp-server": {
"command": "uvx",
"args": [
"awslabs.aurora-dsql-mcp-server@latest",
"--cluster_endpoint",
"[your dsql cluster endpoint]",
"--region",
"[your dsql cluster region, e.g. us-east-1]",
"--database_user",
"[your dsql username]",
"--profile",
"default"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": []
}
}
}
Windows Installation
For Windows users, the MCP server configuration format is slightly different:
{
"mcpServers": {
"awslabs.aurora-dsql-mcp-server": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "uv",
"args": [
"tool",
"run",
"--from",
"awslabs.aurora-dsql-mcp-server@latest",
"awslabs.aurora-dsql-mcp-server.exe"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR",
"AWS_PROFILE": "your-aws-profile",
"AWS_REGION": "us-east-1"
}
}
}
}
Using Docker
- 'git clone https://github.com/awslabs/mcp.git'
- Go to sub-directory 'src/aurora-dsql-mcp-server/'
- Run 'docker build -t awslabs/aurora-dsql-mcp-server:latest .'
- Create a env file with temporary credentials:
Either manually:
# fictitious `.env` file with AWS temporary credentials
AWS_ACCESS_KEY_ID=<from the profile you set up>
AWS_SECRET_ACCESS_KEY=<from the profile you set up>
AWS_SESSION_TOKEN=<from the profile you set up>
Or using aws configure:
aws configure export-credentials --profile your-profile-name --format env > temp_aws_credentials.env | sed 's/^export //' > temp_aws_credentials.env
{
"mcpServers": {
"awslabs.aurora-dsql-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--env-file",
"/full/path/to/file/above/.env",
"awslabs/aurora-dsql-mcp-server:latest",
"--cluster_endpoint",
"[your data]",
"--database_user",
"[your data]",
"--region",
"[your data]"
]
}
}
}
Server Configuration options
--allow-writes
By default, the DSQL MCP server operates in read-only mode. In this mode:
- readonly_query: Executes single read-only queries
- transact: Executes read-only transactions with point-in-time consistency
- Useful for multiple queries that need to see data at the same point in time
- All statements are validated to ensure they are read-only operations
- Write operations (INSERT, UPDATE, DELETE, CREATE, DROP, ALTER, etc.) are rejected
To enable write operations, pass the --allow-writes parameter. In read-write mode:
- readonly_query: Same behavior (read-only queries)
- transact: Supports all DDL and DML operations (CREATE, INSERT, UPDATE, DELETE, etc.)
We recommend using least-privilege access when connecting to DSQL. For example, users should use a role that is read-only when possible. The read-only mode provides best-effort client-side validation to reject mutations.
--cluster_endpoint
This is mandatory parameter to specify the cluster to connect to. This should be the full endpoint of your cluster, e.g., 01abc2ldefg3hijklmnopqurstu.dsql.us-east-1.on.aws
--database_user
This is a mandatory parameter to specify the user to connect as. For example
admin, or my_user. Note that the AWS credentials you are using must have
permission to login as that user. For more information on setting up and using
database roles in DSQL, see Using database roles with IAM roles.
--profile
You can specify the aws profile to use for your credentials. Note that this is not supported for docker installation.
Using the AWS_PROFILE environment variable in your MCP configuration is also
supported:
"env": {
"AWS_PROFILE": "your-aws-profile"
}
If neither is provided, the MCP server defaults to using the "default" profile in your AWS configuration file.
--region
This is a mandatory parameter to specify the region of your DSQL database.
--knowledge-server
Optional parameter to specify the remote MCP server endpoint for DSQL knowledge tools (documentation search, reading, and recommendations). By default it is pre-configured.
Example:
--knowledge-server https://custom-knowledge-server.example.com
Note: For security, only use trusted knowledge server endpoints. The server should be an HTTPS endpoint.
--knowledge-timeout
Optional parameter to specify the timeout in seconds for requests to the knowledge server.
Default: 30.0
Example:
--knowledge-timeout 60.0
Increase this value if you experience timeouts when accessing documentation on slow networks.
Development and Testing
Running Tests
This project includes comprehensive tests to validate the readonly enforcement mechanisms. To run the tests:
# Install dependencies and run tests
uv run pytest tests/test_readonly_enforcement.py -v
# Run all tests
uv run pytest -v
# Run tests with coverage
uv run pytest --cov=awslabs.aurora_dsql_mcp_server tests/ -v
Local Docker Testing
To test the MCP server locally using Docker:
-
Build the Docker image:
cd src/aurora-dsql-mcp-server docker build -t awslabs/aurora-dsql-mcp-server:latest .
-
Create AWS credentials file:
Option A - Manual creation:
# Create .env file with your AWS credentials cat > .env << EOF AWS_ACCESS_KEY_ID=your_access_key_here AWS_SECRET_ACCESS_KEY=your_secret_key_here AWS_SESSION_TOKEN=your_session_token_here EOF
Option B - Export from AWS CLI:
aws configure export-credentials --profile your-profile-name --format env > temp_aws_credentials.env sed 's/^export //' temp_aws_credentials.env > .env rm temp_aws_credentials.env
-
Test the container directly:
docker run -i --rm \ --env-file .env \ awslabs/aurora-dsql-mcp-server:latest \ --cluster_endpoint "your-dsql-cluster-endpoint" \ --database_user "your-username" \ --region "us-east-1"
-
Test with write operations enabled:
docker run -i --rm \ --env-file .env \ awslabs/aurora-dsql-mcp-server:latest \ --cluster_endpoint "your-dsql-cluster-endpoint" \ --database_user "your-username" \ --region "us-east-1" \ --allow-writes
Note: Replace the placeholder values with your actual DSQL cluster endpoint, username, and region.
AI Rules
The standalone DSQL Agent Skill in this repository is deprecated. Its
directories now provide compatibility redirects only. Use the canonical
dsql skill in the databases-on-aws plugin
for current DSQL guidance.
The Kiro Power remains available as described below.
Kiro Power
To setup the Kiro power:
- Install directly from the Kiro Powers Registry
- Once redirected to the Power in the IDE either:
- Select the
Try Powerbutton. Suggested for people who want:- The AI to guide MCP server setup
- An interactive onboarding experience with DSQL to create a new cluster
- Open a new Kiro chat and ask anything related to DSQL
- Optionally update the MCP Config: Add your existing cluster details and test the MCP server connection so the MCP server can be used out of the box with the power.
- The Kiro agent will automatically activate the power if it identifies the power as valuable for completing the user's task.
- Select the
Canonical DSQL Agent Skill
For Claude Code, use the verified plugin commands:
/plugin marketplace add awslabs/agent-plugins
/plugin install databases-on-aws@agent-plugins-for-aws
For Codex, Cursor, and other supported clients, follow the
current awslabs/agent-plugins installation instructions.
Do not remove an existing standalone skill checkout or symlink without the
user's explicit approval.
Release files for awslabs.aurora-dsql-mcp-server 1.1.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| awslabs_aurora_dsql_mcp_server-1.1.3.tar.gz | 240.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| awslabs_aurora_dsql_mcp_server-1.1.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:278.2 kB
Release files / awslabs_aurora_dsql_mcp_server-1.1.3.tar.gz
| Download URL | awslabs_aurora_dsql_mcp_server-1.1.3.tar.gz |
|---|---|
| Size | 240.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9770f7c14a7125d29be27aa95b3a3bed1da0d4994e747ff9ea3337707a96adfa
|
|
BLAKE2b-256 checksum How to use checksums |
8d85c9a3d5b51d065da9d24419ad4615e552c2043a17afafd30f0f413dcfdaef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.
Transparency logRelease files / awslabs_aurora_dsql_mcp_server-1.1.3-py3-none-any.whl
| Download URL | awslabs_aurora_dsql_mcp_server-1.1.3-py3-none-any.whl |
|---|---|
| Size | 38.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b1aaba8995aeff72f29f79e323210267e979e4654b5cd341a0ce43bfc5fa5362
|
|
BLAKE2b-256 checksum How to use checksums |
6fdcb84e528033f7a57e0b0e0adba2ac3dcd0363cedd8f5e396c0f5fc8202f41
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.
Transparency log