MCP Server for MySQL based on NodeJS
@benborla
About 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.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"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"
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
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.
More Databases MCP servers
Neon MCP Server
neondatabase-labsMCP server for interacting with Neon Management API and databases
MongoDB Lens
fureyππ MongoDB Lens: Full Featured MCP Server for MongoDB Databases
mcp-server-qdrant: A Qdrant MCP server
qdrantAn official Qdrant Model Context Protocol (MCP) server implementation
Neon MCP Server
neondatabaseMCP server for interacting with Neon Management API and databases
Multi Database MCP Server
FreePeakA powerful multi-database server implementing the Model Context Protocol (MCP) to provide AI assistants with structured access to databases.
Comments