
mcp-mysql-server
3 years
Works with Finder
1
Github Watches
0
Github Forks
0
Github Stars
MySQL MCP Server
Version: 0.1.0
A Model Context Protocol (MCP) server for interacting with a MySQL database. This server allows MCP clients (like AI assistants) to query and modify data in a configured MySQL database.
Features
- Connects to a MySQL database using standard connection parameters.
- Provides MCP tools for executing SQL queries and statements.
- Supports read-only queries (
SELECT
,SHOW
,DESCRIBE
). - Supports write operations (
INSERT
,UPDATE
,DELETE
) via separate tools, gated by an environment variable (MYSQL_ALLOW_WRITE_OPS
). - Communicates over standard input/output (stdio).
Installation
# Install as a project dependency (recommended for use within another project)
npm install
# Or, if intended as a standalone global tool:
# 1. Build the project:
# npm run build
# 2. Link it globally:
# npm link
# (or use `npm install -g .` if publishing)
Configuration
This server requires the following environment variables to be set for database connection:
-
MYSQL_HOST
: The hostname or IP address of your MySQL server. -
MYSQL_USER
: The username for connecting to the database. -
MYSQL_PASSWORD
: The password for the specified user. -
MYSQL_DATABASE
: The name of the database to connect to. -
MYSQL_PORT
: (Optional) The port number for the MySQL server (defaults to 3306). -
MYSQL_ALLOW_WRITE_OPS
: (Optional) Set totrue
to enable theinsert
,update
, anddelete
tools. Defaults tofalse
(write operations disabled). Warning: Enabling write operations allows the MCP client to modify your database. Use with caution.
These variables need to be available in the environment where the server process is launched. How you set them depends on your operating system and how you run the server (e.g., .env
file, system environment variables, shell export).
Usage
Once configured and built (npm run build
), you can run the server:
# If linked globally
mysql-server
# Or run directly using node
node build/index.js
The server will start and print MySQL MCP server running on stdio
to stderr, then listen for MCP requests on standard input/output. You would typically configure your MCP client (e.g., an AI assistant integration) to connect to this server process.
Available Tools
The server exposes the following tools for use by MCP clients:
1. query
- Description: Executes a read-only SQL query (SELECT, SHOW, DESCRIBE) against the configured database.
-
Input Schema:
{ "type": "object", "properties": { "sql": { "type": "string", "description": "The read-only SQL query (SELECT, SHOW, DESCRIBE) to execute." } }, "required": ["sql"] }
-
Output: Returns the query results as a JSON string within the MCP response
content
. Returns an error if the query is not read-only or if there's a database error.
2. insert
-
Description: Executes an INSERT SQL statement. Requires
MYSQL_ALLOW_WRITE_OPS
to be set totrue
. -
Input Schema:
{ "type": "object", "properties": { "sql": { "type": "string", "description": "The INSERT SQL statement to execute." } }, "required": ["sql"] }
- Output: Returns a success message including affected rows and insert ID (if applicable), or an error message if the operation fails or write operations are disabled.
3. update
-
Description: Executes an UPDATE SQL statement. Requires
MYSQL_ALLOW_WRITE_OPS
to be set totrue
. -
Input Schema:
{ "type": "object", "properties": { "sql": { "type": "string", "description": "The UPDATE SQL statement to execute." } }, "required": ["sql"] }
- Output: Returns a success message including affected rows, or an error message if the operation fails or write operations are disabled.
4. delete
-
Description: Executes a DELETE SQL statement. Requires
MYSQL_ALLOW_WRITE_OPS
to be set totrue
. -
Input Schema:
{ "type": "object", "properties": { "sql": { "type": "string", "description": "The DELETE SQL statement to execute." } }, "required": ["sql"] }
- Output: Returns a success message including affected rows, or an error message if the operation fails or write operations are disabled.
Development
To work on the server code:
-
Clone the repository: (If applicable)
# git clone <repository-url> # cd mysql-server
-
Install dependencies:
npm install
-
Build the code: (Compiles TypeScript to JavaScript in
build/
)npm run build
-
Watch for changes: (Automatically recompiles on changes)
npm run watch
-
Run the MCP Inspector: (For testing/debugging the server locally)
# Make sure you have built the code first npm run inspector
相关推荐
I find academic articles and books for research and literature reviews.
Converts Figma frames into front-end code for various mobile frameworks.
Confidential guide on numerology and astrology, based of GG33 Public information
Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.
Advanced software engineer GPT that excels through nailing the basics.
Delivers concise Python code and interprets non-English comments
💬 MaxKB is a ready-to-use AI chatbot that integrates Retrieval-Augmented Generation (RAG) pipelines, supports robust workflows, and provides advanced MCP tool-use capabilities.
Micropython I2C-based manipulation of the MCP series GPIO expander, derived from Adafruit_MCP230xx
MCP server to provide Figma layout information to AI coding agents like Cursor
The all-in-one Desktop & Docker AI application with built-in RAG, AI agents, No-code agent builder, MCP compatibility, and more.
Reviews

user_DsLkeObC
I've been using mcp-mysql-server by actstorms for a while now and it has significantly streamlined my database management tasks. Its robust features and seamless integration have made it an indispensable tool in my daily workflow. Highly recommend checking it out on GitHub!