mcp-server-mysql
@yuru-sha
关于 mcp-server-mysql
MCP Server for MySQL databases
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-server-mysql-yuru-sha": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/mysql",
"mysql://host:port/dbname"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is mcp-server-mysql?
Model Context Protocol Server for MySQL databases. It enables LLMs to inspect database schemas and execute read-only queries in a safe, read‑only transaction.
How to use mcp-server-mysql?
Install via Docker (build the image then run with a connection URL) or via the Smithery CLI. Configure the server in Claude Desktop by adding a “mysql” entry to claude_desktop_config.json that points to a Docker run command with the mysql://host:port/dbname connection string.
Key features of mcp-server-mysql
- Read-only access to MySQL databases
- Schema inspection for LLM‑driven analysis
- All queries executed inside READ ONLY transactions
- Docker image available for easy deployment
- Published as an npm package
Use cases of mcp-server-mysql
- Allow an LLM to examine table structures and relationships
- Let an LLM answer questions about database content with safe, read‑only queries
- Provide live schema details to AI agents during data exploration
FAQ from mcp-server-mysql
What does mcp-server-mysql do?
It acts as a bridge between LLMs and a MySQL database, allowing schema inspection and read‑only query execution while enforcing READ ONLY transactions.
What are the runtime requirements?
You can run it via Docker (using the built image) or install it as an npm package. The README does not specify a minimum Node.js version.
How is data protected?
All queries are wrapped in READ ONLY transactions, preventing any writes to the database. For extra security, creating a dedicated read‑only database user is recommended.
What connection URL format does it expect?
The server accepts a connection string in the form mysql://[user][:password]@host[:port]/database.
Is there a known limitation?
The server intentionally restricts all operations to read‑only; no insert, update, or delete actions are permitted.
数据库 分类下的更多 MCP 服务器

Sqlite
modelcontextprotocolModel Context Protocol Servers
MotherDuck's DuckDB MCP Server
motherduckdbLocal MCP server for DuckDB and MotherDuck
Neon MCP Server
neondatabase-labsMCP server for interacting with Neon Management API and databases
Dbhub
bytebaseZero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
MCP Server for Milvus
zilliztechModel Context Protocol Servers for Milvus
评论