Skip to content

V1.0.0

Choose a tag to compare

@iamdylanngo iamdylanngo released this 21 Jun 07:53
· 3 commits to main since this release

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: mutate rejects SELECT statements — use query for reads.