This MCP server provides a single-binary solution for connecting AI assistants to SQL databases such as MySQL, PostgreSQL, and SQLite with no runtime dependencies.
From the registry: Database MCP server for MySQL, MariaDB, PostgreSQL & SQLite

Please install the `database` MCP server into my current AI client (that's you).
Required prerequisites (do these first if not already done):
- **Install database-mcp binary** — Download the single binary from GitHub releases and place it on your PATH. (https://github.com/haymon-ai/database/releases)
Canonical MCP server config (stdio transport):
- command: `database-mcp`
- args: []
- required environment variables:
- `DB_BACKEND`: Database backend: mysql, mariadb, postgres, or sqlite (example: `mysql`)
- optional environment variables:
- `DB_HOST`: Database host (example: `127.0.0.1`)
- `DB_PORT`: Database port (example: `3306`)
- `DB_USER`: Database user (example: `root`)
- `DB_PASSWORD`: Database password (example: `<password>`)
- `DB_NAME`: Database name or SQLite file path (example: `mydb`)
- `DB_CHARSET`: Character set (MySQL/MariaDB only)
- `DB_SSL`: Enable SSL (example: `false`)
- `DB_SSL_CA`: CA certificate path
- `DB_SSL_CERT`: Client certificate path
- `DB_SSL_KEY`: Client key path
- `DB_SSL_VERIFY_CERT`: Verify server certificate (example: `true`)
- `MCP_READ_ONLY`: Block write queries (example: `true`)
- `MCP_MAX_POOL_SIZE`: Max connection pool size (example: `10`)
- `LOG_LEVEL`: Log level (example: `info`)
Note: Single-binary Rust server. Supports stdio (shown) and HTTP transport. HTTP requires running the server separately as database-mcp http.
Add this MCP server to my current client's config in the correct format for you. If you need secrets or credentials I haven't provided, ASK me — do not invent values or leave raw placeholders. After adding it, tell me how to verify the server is connected.DB_BACKENDrequiredSpecifies the database backend (mysql, mariadb, postgres, or sqlite).DB_USERrequiredDatabase user for authentication.DB_NAMErequiredDatabase name or SQLite file path.MCP server for interacting with the Supabase platform