MySQL MCP Server
A powerful MCP server that provides direct access to MySQL databases. This server enables AI agents to interact with MySQL databases, execute SQL queries, and manage database content through a simple interface.
Features
Resources
- Access notes stored in the database via
note:///{id}URIs - Each note has a title and content
- Plain text mime type for simple content access
Tools
create_note- Create new text notes in the database- Takes title and content as required parameters
- Stores note in the MySQL database
list_tables- List all tables in the connected databasecount_tables- Get the total number of tables in the databasesearch_tables- Search for tables using LIKE patterndescribe_table- Get the structure of a specific tableexecute_sql- Execute custom SQL queries
Prerequisites
- Node.js 18 or higher
- MySQL server installed and running
- A database with appropriate permissions
Setup
Clone this repository:
git clone git@github.com:LeonMelamud/mysql-mcp.git cd mysql-mcpInstall dependencies:
npm installCreate a
.envfile in the root directory with your MySQL connection details:MYSQL_HOST=localhost MYSQL_USER=your_username MYSQL_PASSWORD=your_password MYSQL_DATABASE=your_databaseBuild the server:
npm run build
Installation
For Claude Desktop
Add the server config to your Claude Desktop configuration file:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"mysql": {
"command": "node",
"args": ["/path/to/mysql-server/build/index.js"],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database"
}
}
}
}
For Cline
Add the server config to your Cline MCP settings file:
On MacOS: ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
On Windows: %APPDATA%CodeUserglobalStoragesaoudrizwan.claude-devsettingscline_mcp_settings.json
{
"mcpServers": {
"mysql": {
"command": "node",
"args": ["/path/to/mysql-server/build/index.js"],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database"
},
"disabled": false,
"autoApprove": []
}
}
}
Usage Examples
Once installed, you can use the MySQL MCP server in your conversations with Claude:
List all tables in the database
Please list all the tables in my MySQL database.
Execute a SQL query
Run this SQL query: SELECT * FROM users LIMIT 5
Create a note
Create a note titled "Meeting Notes" with the content "Discussed project timeline and assigned tasks."
Development
For development with auto-rebuild:
npm run watch
Debugging
Use the MCP Inspector to debug the server:
npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.
License
MIT
MySQL Server
Project Details
- LeonMelamud/mysql-mcp
- mysql-server
- Last Updated: 4/13/2025
Categories
Recomended MCP Servers
A Model Context Protocol Server connector for Perplexity API, to enable web search without leaving the MCP ecosystem.
MCP server for Hugging Face dataset viewer
MCP Server for Chronulus AI Forecasting and Prediction Agents
MCP Server to retrieve documentation for a package
A MCP Server for Google Scholar: 🔍 Enable AI assistants to search and access Google Scholar papers through...
This repo hosts an MCP server for volatility3.x
强大的MCP翻译服务器!#AiryLarkMCP 🌐 专为专业翻译人员设计: • 三阶段翻译流程:分析规划、精准翻译、全文审校 • 自动识别专业领域术语 • 提供全面翻译质量评估 • 支持多语种互译 • 保持原文风格与专业性 💯 无缝集成Claude/Cursor等支持MCP的AI助手,让AI翻译达到专业水准!
A Model Context Protocol server providing LLM Agents a second opinion via AI-powered Deepseek-Reasoning R1 mentorship capabilities, including...
A mcp server that bridges Dune Analytics data to AI agents.
VSCode Extension with an MCP server that exposes semantic tools like Find Usages and Rename to LLMs





