Skip to content

Releases: iamdylanngo/mysql-mcp-server

V1.0.2

28 Jun 02:44

Choose a tag to compare

Full Changelog: v1.0.2...v1.0.2

Update the README guide to install msql-mcp-server in Claude Code.

V1.0.1

21 Jun 08:41

Choose a tag to compare

Full Changelog: v1.0.1...v1.0.1

Update MySQL MCP Server Claude Icon

V1.0.0

21 Jun 07:53

Choose a tag to compare

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.