Catalog
DBeast PostgreSQL MCP
Officialby snss10 · Python
PostgreSQL MCP server for schema, query, health, security, and performance analysis.
PostgreSQL management tool for schema, queries, health checks, and performance analysis.
Topics
ai-toolsasyncpgclaudecursordatabasedbamcpmodel-context-protocolpostgresqlpythonsqlmcp-serverstdio-mcp
README not available yet.
Install
Configuration
Environment variables
DATABASE_URLsecretPostgreSQL connection URL, for example postgresql://user:password@host:5432/database.
DB_HOSTPostgreSQL host when DATABASE_URL is not used.
DB_PORTPostgreSQL port when DATABASE_URL is not used.
DB_USERPostgreSQL user when DATABASE_URL is not used.
DB_PASSWORDsecretPostgreSQL password when DATABASE_URL is not used.
DB_NAMEPostgreSQL database name when DATABASE_URL is not used.
AWS_SECRET_NAMEAWS Secrets Manager secret containing PostgreSQL credentials.
AWS_REGIONAWS region for Secrets Manager lookup.
claude_desktop_config.json
{
"mcpServers": {
"dbeast": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/snss10/dbeast:2.0.2"
],
"env": {
"DATABASE_URL": "<YOUR_DATABASE_URL>",
"DB_HOST": "<YOUR_DB_HOST>",
"DB_PORT": "<YOUR_DB_PORT>",
"DB_USER": "<YOUR_DB_USER>",
"DB_PASSWORD": "<YOUR_DB_PASSWORD>",
"DB_NAME": "<YOUR_DB_NAME>",
"AWS_SECRET_NAME": "<YOUR_AWS_SECRET_NAME>",
"AWS_REGION": "<YOUR_AWS_REGION>"
}
}
}
}