MCP Server for MySQL based on NodeJS
@benborla
关于 MCP Server for MySQL based on NodeJS
A Model Context Protocol server that provides read-only access to MySQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp_server_mysql": {
"command": "npx",
"args": [
"-y",
"@benborla29/mcp-server-mysql"
],
"env": {
"MYSQL_HOST": "127.0.0.1",
"MYSQL_PORT": "3306",
"MYSQL_USER": "root",
"MYSQL_PASS": "password",
"MYSQL_DB": "your_db",
"ALLOW_INSERT_OPERATION": "true",
"ALLOW_UPDATE_OPERATION": "true",
"ALLOW_DELETE_OPERATION": "true"
}
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP Server for MySQL based on NodeJS?
This server enables LLMs like Claude to interact with MySQL databases through the Model Context Protocol, allowing inspection of schemas, query execution, and optional write operations. It is designed for developers who want AI agents to query MySQL databases securely, with read-only access by default.
How to use MCP Server for MySQL based on NodeJS?
Install via npx @benborla29/mcp-server-mysql with environment variables for host, port, user, password, and database. For Claude Code, use claude mcp add; for other clients, configure a JSON entry in mcpServers. Write operations are opt-in using ALLOW_INSERT_OPERATION, ALLOW_UPDATE_OPERATION, and ALLOW_DELETE_OPERATION environment flags.
Key features of MCP Server for MySQL based on NodeJS
- Read-only by default, write operations opt-in
- Built-in SSH tunnel for remote databases
- Multi-database mode without reconnecting
- Automatic PII redaction in results
- Remote mode with HTTP and bearer token auth
- SSL/TLS support with mTLS option
Use cases of MCP Server for MySQL based on NodeJS
- AI assistant executing read-only SQL queries for data analysis
- Schema inspection and metadata retrieval via
mysql://tablesresource - Secure cross-database queries from a single connection
- Remote database access through SSH tunnels
FAQ from MCP Server for MySQL based on NodeJS
Is write support enabled by default?
No, all write operations (INSERT, UPDATE, DELETE) are disabled by default. They must be enabled individually via environment flags.
What are the runtime requirements?
Node.js v20+ and MySQL 5.7+ (8.0+ recommended). The MySQL user must have appropriate privileges.
How can I connect to a remote database?
The server includes built-in SSH tunnel support for securely accessing remote MySQL instances.
How do I enable write operations?
Set the environment variables ALLOW_INSERT_OPERATION=true, ALLOW_UPDATE_OPERATION=true, and ALLOW_DELETE_OPERATION=true as needed.
What data can the server access?
By default, it queries the configured database and exposes table metadata via the mysql://tables resource. Schema-specific permissions can be set per database.
数据库 分类下的更多 MCP 服务器
Elasticsearch/OpenSearch MCP Server
cr7258A Model Context Protocol (MCP) server implementation that provides Elasticsearch and OpenSearch interaction.
Sail MCP Server for Spark SQL
lakehqDrop-in Apache Spark replacement written in Rust, unifying batch processing, stream processing, and compute-intensive AI workloads.
Neon MCP Server
neondatabaseMCP server for interacting with Neon Management API and databases
MySQL MCP Server
designcomputerA Model Context Protocol (MCP) server that enables secure interaction with MySQL databases
MotherDuck's DuckDB MCP Server
motherduckdbLocal MCP server for DuckDB and MotherDuck
评论