V1.0.0
Full Changelog: v1.0.0...v1.0.0
MySQL MCP Server
A Model Context Protocol (MCP) server that connects Claude (or any MCP-compatible client) to a MySQL database. It exposes tools for schema inspection and running read/write queries over a stdio transport.
Tools
| Tool | Description |
|---|---|
select_mysql_version |
Returns the connected MySQL server version |
list_tables |
Lists all tables in the connected database |
describe_table |
Shows columns, types, and constraints for a given table |
query |
Runs a read-only SELECT query with optional ? placeholder params |
mutate |
Runs an INSERT, UPDATE, or DELETE statement with optional params |
Note:
mutaterejectsSELECTstatements — usequeryfor reads.