mcp-database
Allows querying, schema inspection, and management of MySQL databases through the MCP server.
Allows querying, schema inspection, and management of PostgreSQL databases through the MCP server.
Allows querying, schema inspection, and management of SQLite databases through the MCP server.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-databaseshow me the schema for the users table"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-database
MCP server for multi-database access — query, inspect schema, and manage SQLite, PostgreSQL, and MySQL databases through Claude.
Why mcp-database?
Problem | Solution |
Need to query a database from Claude Code / Claude Desktop | One MCP server, multiple database support |
Existing database MCP servers are JS/Go only | Pure Python, uses official |
Worried about accidental writes | Read-only by default, writes opt-in |
Don't know the schema | Built-in schema inspection, table info, search |
Related MCP server: mcp-database-server
Why mcp-database? (vs alternatives)
Feature | mcp-database | @modelcontextprotocol/sqlite | Other MCP DB Servers |
Multi-database (SQLite + PG + MySQL) | ✅ | ❌ SQLite only | Varies |
Multi-connection | ✅ | ❌ | ❌ |
Schema diff | ✅ | ❌ | ❌ |
ER diagram (Mermaid) | ✅ | ❌ | ❌ |
Health check | ✅ | ❌ | ❌ |
Explain query | ✅ | ❌ | ❌ |
Data masking | ✅ | ❌ | ❌ |
Query timeout | ✅ | ❌ | ❌ |
Read-only default | ✅ | ✅ | Varies |
Pure Python | ✅ | ❌ (TypeScript) | Varies |
Quick Start
# Install
pip install mcp-database
# Run with a SQLite database
MCP_DATABASE_URL=sqlite:///path/to/your.db mcp-databaseClaude Code Integration
# Add to Claude Code
claude mcp add mcp-database -- mcp-database
# Or with a specific database
claude mcp add mcp-database -e MCP_DATABASE_URL=sqlite:///path/to/db.sqlite -- mcp-databaseClaude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"database": {
"command": "mcp-database",
"env": {
"MCP_DATABASE_URL": "sqlite:///path/to/your.db"
}
}
}
}Cursor Integration
Add to your Cursor MCP settings (Settings → MCP):
{
"mcpServers": {
"database": {
"command": "mcp-database",
"env": {
"MCP_DATABASE_URL": "sqlite:///path/to/your.db"
}
}
}
}Windsurf Integration
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"database": {
"command": "mcp-database",
"env": {
"MCP_DATABASE_URL": "sqlite:///path/to/your.db"
}
}
}
}Other MCP-Compatible Tools
mcp-database works with any tool that supports the MCP protocol.
The configuration pattern is the same: point the tool to the
mcp-database command and set MCP_DATABASE_URL.
Supported Databases
Database | Status | Install |
SQLite | Built-in |
|
PostgreSQL | Optional |
|
MySQL | Optional |
|
MongoDB | Preview |
|
All | Optional |
|
Configuration
Environment Variables
Variable | Default | Description |
|
| Database connection URL |
|
| Database type: |
|
| Enable read-only mode |
|
| Maximum rows returned per query |
|
| Query timeout in seconds |
|
| Mask sensitive columns (email, phone, token, etc.) |
| — | Path to JSON config file for multiple connections |
Multiple Connections
To connect to multiple databases simultaneously, create a JSON config file:
{
"connections": {
"prod": {"url": "postgres://user:pass@host:5432/db", "read_only": true},
"staging": {"url": "postgres://user:pass@host:5432/staging", "read_only": true},
"local": {"url": "sqlite:///dev.db", "read_only": false}
},
"settings": {
"max_rows": 100,
"allow_writes": false
}
}Set MCP_DATABASE_CONFIG to the file path. All tools accept an optional connection_name parameter (defaults to "default").
Connection URLs
# SQLite
MCP_DATABASE_URL=sqlite:///path/to/db.sqlite
MCP_DATABASE_URL=sqlite:///:memory:
# PostgreSQL
MCP_DATABASE_URL=postgres://user:password@localhost:5432/mydb
MCP_DATABASE_TYPE=postgresql
# MySQL
MCP_DATABASE_URL=mysql://user:password@localhost:3306/mydb
MCP_DATABASE_TYPE=mysqlAvailable Tools
Once connected, Claude can use these tools:
Tool | Description |
| List all configured database connections |
| List all tables in a database |
| Get detailed table info (columns, types, row count) |
| Get full database schema (CREATE TABLE statements) |
| Execute a read-only SQL query (SELECT, SHOW, DESCRIBE) |
| Execute a write statement (INSERT, UPDATE, DELETE) — opt-in only |
| Get sample rows from a table |
| Search for tables or columns by keyword |
| Compare schemas between two database connections |
| Get database health metrics (table count, row counts, latency) |
| Generate Mermaid ER diagram from database schema |
| Explain the execution plan for a SELECT query |
| Diagnose connection issues with troubleshooting hints |
Examples
Ask Claude things like:
"What tables are in my database?"
"Show me the schema for the users table"
"Query the top 10 orders by amount"
"Find all columns related to 'email'"
"Sample some rows from the products table"
"Compare schemas between staging and production"
"Generate an ER diagram for my database"
"How large are my tables?"
Security
Read-only by default — queries are safe, no data modification
Write opt-in — set
allow_writes=TrueandMCP_DATABASE_READ_ONLY=falseto enableRead-only detection — write tool rejects SELECT statements (use
queryinstead)Row limits — configurable max rows to prevent accidental large result sets
Query timeout — configurable timeout (default 30s) to prevent slow queries from blocking
Data masking — optionally mask sensitive columns (emails, phones, tokens) with
MCP_MASK_SENSITIVE=true
Integration with Mergewall
Use mcp-database as the storage backend for Mergewall audit data:
# 1. Create audit database
MCP_DATABASE_URL=sqlite:///mergewall-audit.db mcp-database
# 2. Ask Claude: "Create the mergewall_audit table using the schema resource"
# 3. Configure Mergewall to export audit data
# (See Mergewall docs for database export configuration)This gives you SQL-queryable governance history instead of flat JSONL files.
Development
# Clone and install for development
git clone https://github.com/jovian-zhibai/mcp-database.git
cd mcp-database
pip install -e ".[dev]"
# Run tests
pytest
# Run with Inspector UI
mcp dev src/mcp_database/server.pyLicense
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jovian-zhibai/mcp-database'
If you have feedback or need assistance with the MCP directory API, please join our Discord server