mysql-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., "@mysql-mcp-serverhow many users are in the database?"
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 MySQL Server
A production-ready Model Context Protocol (MCP) server for MySQL database operations. Provides secure HTTP endpoints for executing read-only queries, analyzing database performance, and monitoring MySQL server status.
๐ Quick Start (1 minute)
Option 1: Docker (Recommended)
# Clone and start with Docker Compose
git clone <repository-url>
cd mcp-mysql-server
cp .env.example .env
docker-compose up -d
# Test the server
curl http://localhost:3000/healthOption 2: Local Installation
# Install and run locally
pip install -e .
python server.py
# Test the server
curl http://localhost:3000/healthRelated MCP server: MySQL MCP Server (Optimized)
๐ Features
๐ง Core Tools
Tool | Description | Input | Output |
| Health check utility |
|
|
| Execute read-only SQL queries |
|
|
| Get MySQL server status | None |
|
| Analyze InnoDB performance | None |
|
๐ก๏ธ Security Features
Authentication: Bearer token, API key, or no auth
Rate limiting: Configurable per-IP limits
Input validation: Pydantic schema validation
Read-only queries: Prevents data modification
Request size limits: Configurable payload limits
CORS support: Configurable cross-origin requests
๐ Observability
Structured logging: JSON format with request tracing
Health monitoring:
/healthendpoint with metricsError tracking: Comprehensive error handling
Performance metrics: Request duration and counts
๐ง Configuration
Environment Variables
# Server Configuration
PORT=3000 # Server port
HOST=0.0.0.0 # Server host
AUTH_MODE=none # none, bearer, api_key
AUTH_TOKEN=your-token # Authentication token
# MySQL Configuration
MYSQL_HOST=localhost # MySQL server host
MYSQL_PORT=3306 # MySQL server port
MYSQL_USER=root # MySQL username
MYSQL_PASSWORD=password # MySQL password
MYSQL_DATABASE=test # Default database
# Rate Limiting
RATE_LIMIT_REQUESTS_PER_MINUTE=60 # Requests per minute per IP
RATE_LIMIT_BURST=10 # Burst allowance
# Security
REQUEST_TIMEOUT_SECONDS=30 # Request timeout
MAX_REQUEST_SIZE_MB=10 # Max request size๐ก API Endpoints
Health Check
GET /health{
"status": "ok",
"version": "0.1.0",
"uptime_seconds": 3600,
"tools": ["ping", "mysql_query", "mysql_status", "mysql_innodb_metrics"],
"metrics": {
"total_requests": 150,
"total_errors": 2,
"recent_errors": []
}
}List Tools
GET /tools{
"ping": {
"description": "Health/ping utility returning timestamp and echo text",
"input_schema": {...},
"output_schema": {...}
}
}Invoke Tool
POST /invoke
Content-Type: application/json
Authorization: Bearer your-token # If auth enabled
{
"tool": "mysql_query",
"args": {
"query": "SELECT COUNT(*) as user_count FROM users"
}
}{
"columns": ["user_count"],
"rows": [[42]],
"row_count": 1,
"execution_time_ms": 15
}๐ณ Docker Deployment
Development
docker-compose up -dProduction
# Build production image
docker build -t mcp-mysql-server .
# Run with custom configuration
docker run -d \
-p 3000:3000 \
-e AUTH_MODE=bearer \
-e AUTH_TOKEN=your-secure-token \
-e MYSQL_HOST=your-mysql-host \
mcp-mysql-server๐งช Testing
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run with coverage
pytest --cov=. --cov-report=html
# Run specific test categories
pytest tests/test_ping.py -v
pytest tests/test_http.py -v
pytest tests/test_auth.py -vInstallation
Install required packages:
pip install -r requirements.txtOr install key dependencies separately:
pip install "mcp[cli]"
pip install mysql-connector-pythonConfiguration
Configure via environment variables:
Variable | Description | Default |
| MySQL server host |
|
| MySQL server port |
|
| MySQL username |
|
| MySQL password | (empty) |
| Default database name | (empty) |
Example (Linux/macOS):
export MYSQL_HOST=localhost
export MYSQL_PORT=3306
export MYSQL_USER=myuser
export MYSQL_PASSWORD=mypassword
export MYSQL_DATABASE=mydatabaseExample (Windows PowerShell):
$env:MYSQL_HOST = "localhost"
$env:MYSQL_PORT = "3306"
$env:MYSQL_USER = "myuser"
$env:MYSQL_PASSWORD = "mypassword"
$env:MYSQL_DATABASE = "mydatabase"Usage
Run the server:
Default stdio transport:
python mysql_server.pySSE transport (for web clients):
python mysql_server.py --transport sseGet help:
python mysql_server.py --helpIntegration
To integrate with Claude Desktop, update your config file (%APPDATA%/Claude/claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"mysql": {
"command": "python",
"args": ["path/to/mysql_server.py"],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database"
}
}
}
}Example Workflows
List all tables: use
list_tablestool or accessmysql://tablesresource.Inspect table schema: use
describe_tabletool ormysql://schema/{table_name}.Execute queries: use
execute_sqlfor select or data modification queries.Analyze slow queries and deadlocks.
Audit user privileges and monitor SSL/TLS connections.
Monitor replication lag and binary logs for health.
Included Tools
The server includes a rich set of tools such as:
mysql_query, list_mysql_tables, mysql_table_schema, mysql_table_data
mysql_table_indexes, mysql_table_size, mysql_table_status
mysql_fragmentation_analysis, mysql_index_optimization_suggestions, mysql_slow_query_analysis
mysql_deadlock_detection, mysql_buffer_pool_cache_diagnostics
mysql_user_privileges, mysql_create_user, mysql_drop_user, mysql_change_user_password
mysql_backup_health_check, mysql_replication_lag_monitoring, mysql_ssl_tls_configuration_audit
mysql_server_health_dashboard, mysql_performance_recommendations
mysql_event_scheduler, mysql_partition_management_recommendations
And many more diagnostic, operational, and security tools.
Security Considerations
Use secure connections when possible.
Store credentials in environment variables.
Only use the server in trusted environments or behind network security.
All queries are validated for safety, but always review for injection risks.
The server includes comprehensive privilege auditing tools.
Error Handling
Robust error reporting for connection, syntax, permission, and network errors.
Structured error response format for easy automated handling.
Development
Project structure:
mcp-mysql-server/
โโโ mysql_server.py # Core server code with tools and protocols
โโโ requirements.txt # Python dependencies
โโโ README.md # This documentation
โโโ pyproject.toml # Optional project metadataTesting
Ensure MySQL server running and reachable.
Configure environment variables.
Run
python mysql_server.pyOptionally test with
mcp dev mysql_server.py
Contributing
Fork repository
Create branches for features or fixes
Add tests and documentation
Submit pull requests for review
License
MIT License โ Open source and free to use
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
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/mukul975/mysql-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server