MySQL MCP Server
@MCP-Mirror
关于 MySQL MCP Server
Mirror of
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"SuMiaoALi_mysql-mcp-server": {
"command": "npx",
"args": [
"mysql-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MySQL MCP Server?
MySQL MCP Server is a Model Context Protocol server that provides secure MySQL database operations for AI assistants and other MCP clients. It exposes database queries and schema introspection as MCP tools and resources.
How to use MySQL MCP Server?
Install via npm install mysql-mcp-server and configure with environment variables (MYSQL_HOST, MYSQL_PORT, MYSQL_USER, MYSQL_PASSWORD, MYSQL_DB, MYSQL_TIMEZONE). Add it to your Claude Desktop config or run directly with npx mysql-mcp-server.
Features of MySQL MCP Server
- Execute safe SQL queries (SELECT, INSERT, SHOW, DESCRIBE)
- Get detailed table structure information
- Insert data with automatic parameterization
- List all tables in the database
- Automatic LIMIT clauses on SELECT queries
- Connection pooling for efficient database management
Use cases of MySQL MCP Server
- AI assistants answering questions from a MySQL database
- Automated database schema inspection and documentation
- Safe, read-mostly database access for chat-based tools
- Inserting records via natural language instructions
- Exploring and understanding table structures interactively
FAQ from MySQL MCP Server
What operations are allowed?
Only SELECT, INSERT, SHOW, and DESCRIBE operations are permitted. Destructive operations like UPDATE and DELETE are explicitly forbidden.
How do I configure the server?
Set environment variables for MySQL connection: MYSQL_HOST, MYSQL_PORT, MYSQL_USER, MYSQL_PASSWORD, MYSQL_DB, and MYSQL_TIMEZONE. All have defaults except password and database.
Does the server protect against SQL injection?
Yes. All user inputs are handled with parameterized queries, and SELECT queries automatically get LIMIT clauses to prevent large data dumps.
What are the runtime dependencies?
Node.js 18 or later, TypeScript, and access to a MySQL database. The server uses connection pooling to manage database connections.
How do I test or debug the server?
Run npm run inspector to start the MCP Inspector, which provides a browser URL for testing tools and resources interactively.
数据库 分类下的更多 MCP 服务器
Sail MCP Server for Spark SQL
lakehqDrop-in Apache Spark replacement written in Rust, unifying batch processing, stream processing, and compute-intensive AI workloads.
mcp-server-duckdb
ktanaka101A Model Context Protocol (MCP) server implementation for DuckDB, providing database interaction capabilities
MotherDuck's DuckDB MCP Server
motherduckdbLocal MCP server for DuckDB and MotherDuck
ClickHouse MCP Server
ClickHouseConnect ClickHouse to your AI assistants.

PostgreSQL
modelcontextprotocolModel Context Protocol Servers
评论