mcp-server-mysql
MCP server for MySQL/MariaDB databases — schema inspection, queries, and data manipulation for AI assistants
Documentation
MySQL MCP Server
A high-quality Model Context Protocol (MCP) server implementation for MySQL databases. This server enables AI assistants like Claude to interact with MySQL databases through a standardized protocol.
Version: 0.2.0 | Protocol: MCP 2025-03-26 | Rust: 1.70+ | Status: Production Ready
Table of Contents
- Features
- Installation
- Quick Start (5 Minutes)
- Usage
- Available Tools
- Database Context Feature
- Security Considerations
- Architecture
- Troubleshooting
- Development
- Deployment Guide
- Contributing
- License
- Support
Features
- Schema Inspection: Retrieve table schemas and structure information
- Query Execution: Execute SQL queries (read-only by default for safety)
- Data Manipulation: Insert, update, and delete operations
- Database Context: Specify which database to use per query
- Safety Controls: Configurable query restrictions to prevent dangerous operations
- Connection Management: Robust connection handling with retry logic and pooling
- Error Handling: Comprehensive error reporting with detailed messages
- JSON-RPC 2.0 Protocol: Standardized communication via stdio
Installation
Prerequisites
- Rust 1.70+
- MySQL 5.7+ or MariaDB 10.2+
- Access to a MySQL database
Building from Source
git clone
cd mcp-server-mysql
cargo build --releaseThe compiled binary will be available at `target/release/mcp-server-mysql`.
From Release Package
# Extract the package
tar -xzf mcp-server-mysql-v0.2.0-linux-x86_64.tar.gz
# Move binary to system path (optional)
sudo cp mcp-server-mysql /usr/local/bin/
# Verify installation
mcp-server-mysql --versionQuick Start (5 Minutes)
Step 1: Build the Server
cargo build --releaseThe binary will be at `target/release/mcp-server-mysql`
Step 2: Test the Connection
./target/release/mcp-server-mysql \
--host localhost \
--username root \
--password yourpassword \
--database testdbYou should see: "MCP MySQL Server started and ready to accept connections"
Step 3: Configure Claude Desktop
Edit your Claude Desktop configuration file:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
Add this configuration:
{
"mcpServers": {
"mysql": {
"command": "/absolute/path/to/mcp-server-mysql",
"args": [
"--host", "localhost",
"--port", "3306",
"--username", "your_username",
"--password", "your_password",
"--database", "your_database"
]
}
}
}Security Note: For production use, consider using environment variables or a secure secrets management solution instead of hardcoding passwords in the configuration file.
Step 4: Restart Claude Desktop
Close and reopen Claude Desktop completely. You should see a small hammer icon indicating the MCP server is connected.
Step 5: Try it Out!
Ask Claude:
- "Can you show me the schema for the users table in my MySQL database?"
- "Query the database and show me the first 10 rows from the products table"
- "What tables are in my database?"
Usage
Command Line Arguments
mcp-server-mysql \
--host localhost \
--port 3306 \
--username your_username \
--password your_password \
--database your_database \
--allow-dangerous-queries falseArguments Reference
| Argument | Description | Default | Required |
|---|---|---|---|
| `--host` | MySQL server hostname | `localhost` | No |
| `--port` | MySQL server port | `3306` | No |
| `--username` | MySQL username | - | Yes |
| `--password` | MySQL password | ` ` (empty) | No |
| `--database` | Database name to connect to | - | Yes |
| `--allow-dangerous-queries` | Allow INSERT/UPDATE/DELETE queries | `false` | No |
Configuration with Claude Desktop
Add this configuration to your Claude Desktop config file:
macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
Windows: `%APPDATA%\Claude\claude_desktop_config.json`
{
"mcpServers": {
"mysql": {
"command": "/path/to/mcp-server-mysql",
"args": [
"--host", "localhost",
"--port", "3306",
"--username", "your_username",
"--password", "your_password",
"--database", "your_database"
]
}
}
}Available Tools
1. mysql (Schema Inspection)
Retrieve database schema information for tables.
Parameters:
- `table_name` (string): Name of the table to inspect, or `"all-tables"` to get all table schemas
Example:
{
"table_name": "users"
}Returns:
- Column information (name, type, nullable, defaults, keys)
- Index information
- Table constraints
2. query (SQL Execution)
Execute SQL queries on the database.
Parameters:
- `query` (string): SQL query to execute
- `database` (string, optional): Database name to use for this specific query
Example:
{
"query": "SELECT * FROM users WHERE active = 1 LIMIT 10",
"database": "my_database"
}Safety:
- By default, only SELECT queries are allowed
- Use `--allow-dangerous-queries` flag to enable INSERT/UPDATE/DELETE
- Dangerous keywords are blocked unless explicitly enabled
3. insert (Insert Data)
Insert data into a specified table.
Parameters:
- `table_name` (string): Name of the table
- `data` (object): Key-value pairs of column names and values
Example:
{
"table_name": "users",
"data": {
"username": "john_doe",
"email": "john@example.com",
"active": true
}
}Returns: Last insert ID
4. update (Update Data)
Update data in a specified table based on conditions.
Parameters:
- `table_name` (string): Name of the table
- `data` (object): Key-value pairs of columns to update
- `conditions` (object): Key-value pairs for WHERE clause
Example:
{
"table_name": "users",
"data": {
"email": "newemail@example.com",
"updated_at": "2024-01-15 10:30:00"
},
"conditions": {
"id": 123
}
}Returns: Number of affected rows
5. delete (Delete Data)
Delete data from a specified table based on conditions.
Parameters:
- `table_name` (string): Name of the table
- `conditions` (object): Key-value pairs for WHERE clause
Example:
{
"table_name": "users",
"conditions": {
"id": 123
}
}Returns: Number of affected rows
Warning: Always specify conditions to avoid deleting all rows!
Database Context Feature
The Problem
Previously, database context was not maintained between queries:
-- Query 1
USE dev_database; -- Succeeds
-- Query 2 (new connection from pool)
SELECT * FROM my_table; -- ❌ Fails: context was lostThe Solution
Use the optional `database` parameter on each query:
{
"query": "SELECT * FROM my_table",
"database": "dev_database"
}Benefits
1. Explicit and Clear: Know exactly which database each query uses
2. No Hidden State: Each query is independent
3. Backward Compatible: Existing queries without parameter still work
4. No Race Conditions: Each query gets its own connection
5. Simple to Use: Just add `"database": "name"` to query arguments
Usage Examples
Basic Query with Database Parameter
{
"query": "SELECT * FROM crm_sites LIMIT 10",
"database": "dev_smartConnect_za"
}Query Without Database Parameter (Uses Default)
{
"query": "SELECT * FROM users WHERE active = 1"
}Uses the database specified in `--database` startup argument.
Multiple Databases in Same Session
// Query database 1
{
"query": "SELECT COUNT(*) FROM customers",
"database": "production_db"
}
// Query database 2
{
"query": "SELECT COUNT(*) FROM test_data",
"database": "test_db"
}Before vs After
Before (Required fully qualified names):
SELECT * FROM dev_smartConnect_za.crm_sites
JOIN dev_smartConnect_za.crm_orgs ON ...
WHERE dev_smartConnect_za.crm_sites.active = 1;After (Clean and simple):
{
"query": "SELECT * FROM crm_sites JOIN crm_orgs ON ... WHERE active = 1",
"database": "dev_smartConnect_za"
}Common Scenarios
Scenario 1: Single Database Project
Set default database and omit the parameter:
# Startup
--database my_project_db
# Query (no database parameter needed)
{
"query": "SELECT * FROM users"
}Scenario 2: Multiple Database Project
Specify database for each query:
// Customer database
{ "query": "...", "database": "customers_db" }
// Orders database
{ "query": "...", "database": "orders_db" }
// Analytics database
{ "query": "...", "database": "analytics_db" }Error Handling
Error Code -32005: Connection Acquisition Failed
Cause: Connection pool exhausted
Solution: Retry after a momentError Code -32006: Database Context Switch Failed
Cause: Database doesn't exist or user lacks permissions
Solution: Verify database exists and user has accessBest Practices
✅ DO
- Specify database explicitly for production queries
- Use descriptive database names in your queries
- Test with `SELECT DATABASE()` to verify context
- Group queries by database for clarity
❌ DON'T
- Mix qualified and unqualified names in the same query
- Assume persistence - specify database for each query
- Use special characters in database names if possible
- Forget to verify user permissions for all databases
Security Considerations
Read-Only Mode (Default)
By default, the server operates in read-only mode, allowing only SELECT queries. This prevents accidental data modification or deletion.
Dangerous Queries Mode
Enable write operations with `--allow-dangerous-queries`:
mcp-server-mysql --username user --password pass --database mydb --allow-dangerous-queries trueUse with caution! This enables:
- INSERT statements
- UPDATE statements
- DELETE statements
- Other potentially destructive operations
SQL Injection Protection
- Table names are validated to contain only alphanumeric characters and underscores
- All data values are parameterized using prepared statements
- Database names are escaped by replacing backticks with double backticks
- No raw SQL concatenation is performed
Connection Security
- Supports standard MySQL SSL/TLS connections
- Connection strings can be configured securely
- Passwords can be provided via environment variables
- Consider using dedicated database users with limited permissions
Production Deployment Security
1. Use dedicated database user:
CREATE USER 'mcp_user'@'localhost' IDENTIFIED BY 'secure_password';
GRANT SELECT ON your_database.* TO 'mcp_user'@'localhost';
FLUSH PRIVILEGES;2. Enable write access only when needed:
--allow-dangerous-queries true # Use with caution!3. Use environment variables (future enhancement):
Consider wrapping the binary in a shell script that reads from env vars.
Architecture
System Overview
┌─────────────────────────────────────────────────────┐
│ MCP Client (e.g., Claude) │
│ Sends: {query, database} │
└────────────────────────┬────────────────────────────┘
│ JSON-RPC 2.0 (stdio)
▼
┌─────────────────────────────────────────────────────┐
│ MCP MySQL Server (Rust) │
│ │
│ execute_query(query, database, pool) │
│ ├─ If database param: │
│ │ ├─ Acquire connection from pool │
│ │ ├─ Execute: USE `database` │
│ │ └─ Execute: [user's query] │
│ └─ Else: │
│ └─ Execute query on pool (default database) │
└────────────────────────┬────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────┐
│ MySQL Connection Pool (5 connections) │
└────────────────────────┬────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────┐
│ MySQL/MariaDB Server │
└─────────────────────────────────────────────────────┘Sequence: Query with Database Parameter
Client MCP Server Connection Pool MySQL Server
│ │ │ │
│ query + │ │ │
│ database │ │ │
├────────────────>│ │ │
│ │ │ │
│ │ acquire() │ │
│ ├───────────────────>│ │
│ │ │ │
│ ││
│ │ OK │ │
│ ││
│ │ Results │ │
│ ││ │
│ Results │ │ │
│> server.logLog levels:
- `INFO`: Connection events, tool calls
- `DEBUG`: Detailed query information
- `WARN`: Non-fatal issues
- `ERROR`: Failures and errors
Systemd Service (Optional)
For long-running deployments, create `/etc/systemd/system/mcp-mysql.service`:
[Unit]
Description=MySQL MCP Server
After=network.target mysql.service
[Service]
Type=simple
User=mcp-user
ExecStart=/usr/local/bin/mcp-server-mysql --username mcp_user --password secret --database production
Restart=on-failure
RestartSec=5s
StandardOutput=journal
StandardError=journal
[Install]
WantedBy=multi-user.targetEnable and start:
sudo systemctl enable mcp-mysql
sudo systemctl start mcp-mysql
sudo systemctl status mcp-mysqlUpgrading
# Backup current version
cp /usr/local/bin/mcp-server-mysql /usr/local/bin/mcp-server-mysql.backup
# Replace with new version
cp mcp-server-mysql /usr/local/bin/
# Restart services
sudo systemctl restart mcp-mysql # If using systemd
# Or restart Claude DesktopRollback
# Restore previous version
cp /usr/local/bin/mcp-server-mysql.backup /usr/local/bin/mcp-server-mysql
# Or checkout previous git tag
git checkout v0.1.0
cargo build --releaseContributing
Contributions are welcome! Please ensure:
- Code follows Rust best practices
- All tests pass
- Documentation is updated
- Commit messages are clear and descriptive
License
Apache-2.0
Support
For issues, questions, or contributions, please open an issue on the project repository.
Version: 0.2.0 | Release Date: 2025-01-XX | Protocol: MCP 2025-03-26 | Platform: Linux x86_64 | Status: Production Ready ✅
Frequently asked questions
What is mcp-server-mysql?
mcp-server-mysql is MCP server for MySQL/MariaDB databases — schema inspection, queries, and data manipulation for AI assistants
How do I install mcp-server-mysql?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is mcp-server-mysql open source?
Yes — it is hosted on GitHub at https://github.com/codeChap/mcp-server-mysql and has 1 stars.
Related MCP tools
an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM
Search infrastructure for AI
YC (S26) | Open Computer History | Record your screen continuously locally and provide context to your agents (Claude, Codex, Openclaw, Hermes, Runner...)
The fastest and the most accurate file search SDK for AI agents, Neovim, Rust, C, Python, Bun and NodeJS
Semantic version control => entity-level diffs, blame, and impact analysis on top of git. 28 languages via tree-sitter. Built for coding agents.
Fast, local-first web content extraction for LLMs. Scrape, crawl, extract structured data — all from Rust. CLI, REST API, and MCP server.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP