MySQL MCP Server
A Model Context Protocol server for MySQL databases that enables AI assistants to query schemas, execute SQL with permission controls, and manage databases through standardized tools.
README
<p align="center"> <img src="https://img.shields.io/npm/v/@johnson.lee/mysql-mcp-server?style=flat&label=npm" alt="npm version"> <img src="https://img.shields.io/npm/l/@johnson.lee/mysql-mcp-server" alt="license MIT"> </p> </p>
MySQL MCP Server
A Model Context Protocol (MCP) server for MySQL databases, built with NestJS and MCP-Nest. Enables AI assistants like Claude and Cursor to interact with MySQL databases through a standardized protocol.
Overview
MySQL MCP Server exposes MySQL database operations as MCP tools, allowing AI assistants to:
- Query and explore database schemas
- Execute SQL queries with permission controls
- List tables, describe table structures, and browse databases
- Run in multiple transport modes (stdio, HTTP SSE, Streamable HTTP)
Features
| Description | |
|---|---|
| Connection Pool | Efficient MySQL connection management with configurable pool size |
| Permission Control | Granular SQL operation permissions (SELECT, INSERT, UPDATE, DELETE, DDL) |
| DRY_RUN Mode | Validate SQL queries without returning actual data |
| MCP Tools | Standardized database operations exposed via Model Context Protocol |
| Graceful Shutdown | Clean resource cleanup on process termination |
| File Logging | Configurable log output with rotation support |
Prerequisites
- Node.js 18+
- MySQL 5.7+ database
- npm or pnpm package manager
Installation
# Global installation (recommended)
npm install -g @johnson.lee/mysql-mcp-server
# Or use npx
npx @johnson.lee/mysql-mcp-server
Quick Start
# Set environment variables
export DB_HOST=localhost
export DB_PORT=3306
export DB_USER=root
export DB_PASSWORD=your_password
export DB_NAME=your_database
# Run the server
mysql-mcp
Configuration
Configure via environment variables:
Database Connection
| Variable | Default | Description |
|---|---|---|
DB_HOST |
localhost | MySQL host |
DB_PORT |
3306 | MySQL port |
DB_USER |
root | MySQL user |
DB_PASSWORD |
- | MySQL password |
DB_NAME |
test_db | Database name |
DB_POOL_MIN |
2 | Min pool connections |
DB_POOL_MAX |
10 | Max pool connections |
Permission Control
| Variable | Default | Description |
|---|---|---|
ALLOW_SELECT |
true | Allow SELECT queries |
ALLOW_VIEW |
true | Allow SHOW / DESCRIBE |
ALLOW_INSERT |
false | Allow INSERT |
ALLOW_UPDATE |
false | Allow UPDATE |
ALLOW_DELETE |
false | Allow DELETE |
ALLOW_DDL |
false | Allow CREATE/ALTER/DROP/TRUNCATE |
Server Options
| Variable | Default | Description |
|---|---|---|
MCP_SERVER_NAME |
mysql-mcp-server | Server name — used as log file prefix |
MCP_TRANSPORT |
stdio | Transport: stdio/http-sse/streamable-http |
LOG_LEVEL |
info | Log level: debug/info/warn/error |
LOG_DIR |
./logs | Log directory |
DRY_RUN |
false | Validate SQL without returning data |
Editor Integration
Claude Desktop
Edit ~/.config/claude/claude_desktop_config.json:
{
"mcpServers": {
"mysql": {
"command": "npx",
"args": ["@johnson.lee/mysql-mcp-server"],
"env": {
"DB_HOST": "localhost",
"DB_USER": "root",
"DB_PASSWORD": "your_password",
"DB_NAME": "your_database"
}
}
}
}
Cursor
Create .cursor/mcp.json:
{
"mcpServers": {
"mysql": {
"command": "npx",
"args": ["@johnson.lee/mysql-mcp-server"],
"env": {
"DB_HOST": "localhost",
"DB_USER": "root",
"DB_PASSWORD": "your_password",
"DB_NAME": "your_database"
}
}
}
}
Multi-Environment Setup
You can register multiple instances to connect different databases simultaneously.
Each instance should have a unique MCP_SERVER_NAME, which is also used as the log file prefix — e.g. dev-info.log, prod-error.log.
Note: All
envvalues must be strings. Use"true"/"false", not bare booleans.
{
"mcpServers": {
"dev-mysql": {
"command": "npx",
"args": ["@johnson.lee/mysql-mcp-server"],
"env": {
"MCP_SERVER_NAME": "dev",
"DB_HOST": "dev-db.example.com",
"DB_PORT": "3306",
"DB_USER": "dev_user",
"DB_PASSWORD": "dev_password",
"DB_NAME": "dev_db",
"LOG_DIR": "/tmp/mcp-logs"
}
},
"prod-mysql": {
"command": "npx",
"args": ["@johnson.lee/mysql-mcp-server"],
"env": {
"MCP_SERVER_NAME": "prod",
"DB_HOST": "prod-db.example.com",
"DB_PORT": "3306",
"DB_USER": "prod_user",
"DB_PASSWORD": "prod_password",
"DB_NAME": "prod_db",
"LOG_DIR": "/tmp/mcp-logs",
"DRY_RUN": "true"
}
}
}
}
With the above config, log files are written to LOG_DIR with the server name as prefix:
/tmp/mcp-logs/
├── dev-info.log
├── dev-error.log
├── prod-info.log
└── prod-error.log
Available Tools
list_tables
List all tables in the current database.
describe_table
Get table structure (columns, types, keys, etc.).
{
"name": "describe_table",
"arguments": { "tableName": "users" }
}
execute_query
Execute SQL queries.
{
"name": "execute_query",
"arguments": { "sql": "SELECT * FROM users LIMIT 10" }
}
list_databases
List all available databases on the MySQL server.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.