
mysql-mcp
Servidor MCP para mysql
1
Github Watches
1
Github Forks
2
Github Stars
MySQL MCP Server
Overview
This project provides a read-only Model Context Protocol (MCP) server for interacting with MySQL databases. It allows clients compatible with MCP to inspect database schemas, retrieve metadata, and execute read-only SQL queries through a set of defined tools. The server is built with extensibility in mind and enforces read-only operations for safety.
Features & Implemented Tools
The server exposes several tools via MCP for database interaction. All tools are designed for read-only operations.
Schema & Metadata Tools
-
get_table_columns
: Retrieves column definitions for a specific table. -
get_schema
: Fetches detailed schema information including tables, columns, indexes, and constraints, with varying detail levels. -
get_indexes
: Retrieves index information for a specific table or all tables. -
get_constraints
: Fetches constraint information (Primary Key, Foreign Key, Unique, Check) for a specific table or all tables. -
compare_schemas
: Compares the structure (tables and columns) of two different database schemas. -
explain_schema
: Generates a textual or structured (JSON) description of the database schema. -
detect_schema_changes
: Returns a snapshot of the current schema. (Note: Does not compare against a specific past time). -
find_relationships
: Discovers explicit foreign key relationships. Can optionally attempt to find implicit relationships based on naming conventions (use with caution). -
find_navigation_paths
: Finds paths between two tables using explicit foreign key relationships (BFS algorithm).
Query Execution Tools
-
execute_query
: Executes a given read-only SQL query (SELECT, SHOW, DESCRIBE, EXPLAIN). -
execute_batch
: Runs multiple read-only SQL queries sequentially. Can stop on the first error or attempt all. -
prepare_statement
: Prepares and executes a read-only SQL statement with parameters. -
explain_query
: ExecutesEXPLAIN
on a given SQL statement to show the query execution plan (TEXT or JSON format). -
get_query_history
: Placeholder tool. Server-side query history is not currently implemented.
Visualization Tools
-
visualize_schema
: Generates schema representations (tables, columns, relationships) in JSON, DOT (Graphviz), or Mermaid syntax suitable for creating ER diagrams.
Performance Tools
-
get_performance_metrics
: Retrieves selected global status variables from MySQL (e.g., Uptime, Threads, Queries). Does not provide query-specific history.
Setup & Installation
-
Prerequisites:
- Node.js
- npm
- Access to a MySQL database
-
Clone the Repository:
git clone https://github.com/kaulvimal/mysql-mcp cd mysql-mcp-server
-
Install Dependencies:
npm install
-
Build the Project:
npm run build
This will create a
build
directory with the compiled code. -
Using the server
-
Create a shell script (e.g.,
mysql-mcp.sh
) in the project root or a convenient location:#!/bin/bash # Set environment variables (if not using .env or want to override) # export DB_HOST=localhost # export DB_USER=root # export DB_PASSWORD="" # export DB_PORT=3306 node $(dirname "$0")/build/index.js
-
Make the script executable:
chmod +x mysql-mcp.sh
-
Integration Example (Cursor)
To integrate this server with an Cursor, you can configure the client to run the server's execution script:
mcpServers": { "mysql-mcp": { "command": "/path/to/your/mysql-mcp.sh" // Replace with the actual path to your script }
相关推荐
I find academic articles and books for research and literature reviews.
Confidential guide on numerology and astrology, based of GG33 Public information
Emulating Dr. Jordan B. Peterson's style in providing life advice and insights.
Your go-to expert in the Rust ecosystem, specializing in precise code interpretation, up-to-date crate version checking, and in-depth source code analysis. I offer accurate, context-aware insights for all your Rust programming questions.
Advanced software engineer GPT that excels through nailing the basics.
Converts Figma frames into front-end code for various mobile frameworks.
Take an adjectivised noun, and create images making it progressively more adjective!
Descubra la colección más completa y actualizada de servidores MCP en el mercado. Este repositorio sirve como un centro centralizado, que ofrece un extenso catálogo de servidores MCP de código abierto y propietarios, completos con características, enlaces de documentación y colaboradores.
La aplicación AI de escritorio todo en uno y Docker con trapo incorporado, agentes de IA, creador de agentes sin código, compatibilidad de MCP y más.
Manipulación basada en Micrypthon I2C del expansor GPIO de la serie MCP, derivada de AdaFruit_MCP230xx
Plataforma de automatización de flujo de trabajo de código justo con capacidades de IA nativas. Combine el edificio visual con código personalizado, auto-anfitrión o nube, más de 400 integraciones.
Espejo dehttps: //github.com/agentience/practices_mcp_server
🧑🚀 全世界最好的 llM 资料总结(数据处理、模型训练、模型部署、 O1 模型、 MCP 、小语言模型、视觉语言模型) | Resumen de los mejores recursos del mundo.
Una lista curada de servidores de protocolo de contexto del modelo (MCP)
Reviews

user_5yTwE24H
As a dedicated user of mysql-mcp, I must say this tool is exceptional for managing MySQL configurations and processes effectively. Created by kaulvimal, it streamlines database management tasks with ease. The open-source nature and clear documentation on GitHub make it accessible for developers of all levels. Highly recommend checking it out!