The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the MySQL (security First) listing page.
English | 简体中文
A security-first MySQL MCP server. Every SQL statement must survive a full AST parse by an industrial-grade SQL parser (TiDB parser) before it can touch your database — backed by a read-only transaction fallback and a driver-level multi-statement lockout. Three independent layers of defense-in-depth: let AI query your database, without letting it walk off with your database.
Most MySQL MCP servers enforce "read-only" with regex/keyword matching, or by wrapping queries in a read-only transaction. Both are broken:
COMMIT; DROP TABLE ... stacked-statement injection — the exact attack Datadog demonstrated against the official Postgres reference server, which has since been archived.This project puts the security boundary on real SQL semantic parsing instead. Every statement is parsed into an AST by the TiDB parser (MySQL 8.0-grammar compatible); anything the parser cannot understand is rejected — fail-closed, so incomplete grammar coverage can only over-block, never under-block. And because the parser sees real MySQL semantics, tricks like hiding a JOIN mysql.user inside a versioned comment /*!80000 ... */ are extracted and checked like any other table reference.
list_profile, then pass an explicit profile to every SQL tool.SELECT / INSERT / UPDATE / DELETE / DDL are individually switchable; the default is read-only. SET, GRANT, CALL, USE, LOAD DATA, LOCK TABLES, and transaction control (BEGIN/COMMIT/ROLLBACK) are rejected unconditionally — classification itself is an allowlist, so unknown statement types land on the deny side by construction.db.*, db.table, app_*.logs (glob per side, case-insensitive). Every table reference is extracted from the AST: JOINs, subqueries, derived tables, CTEs (scope-aware — a CTE name can't shadow a real table to smuggle it past the check), multi-table DML, INSERT ... SELECT, and versioned comments.mysql:///schema/{profile}/{database}/{table}. Reading a resource returns live SHOW CREATE TABLE SQL with only the volatile table-level AUTO_INCREMENT=N counter removed.UPDATE/DELETE without WHERE.mysql_stats tool so you can ask "which query was slowest?" right in the conversation.mysql_script runs a multi-statement script in a single transaction with every statement individually re-validated; any failure rolls back everything. DDL is banned inside scripts because MySQL's implicit commit would break atomicity.mysql_explain with traditional / json / tree formats and EXPLAIN ANALYZE support.mysql_query as a filterable, sortable table with per-view history, selection, column controls, and TSV/CSV/JSON copy; other hosts keep receiving the original text result.All seven mysql_* tools require a non-empty profile string matching a configured name. There is no default connection: missing or unknown profiles are rejected before database access. mysql_describe_table defaults its optional database argument to the selected profile's database.
| Tool | What it does |
|---|---|
list_profile | No arguments; return names and descriptions sorted by name as text and structured {profiles: [{name, description}]}; no connection probe or credentials |
mysql_query | Run one read-only statement (SELECT / SHOW / DESCRIBE / EXPLAIN) |
mysql_execute | Run one write statement (INSERT / UPDATE / DELETE / DDL — each type must be enabled in config); returns affected rows |
mysql_script | Run a ;-separated multi-statement script atomically in one transaction — all-or-nothing; DDL banned |
mysql_explain | Execution plan for a single SELECT (format: traditional / json / tree; analyze: true runs EXPLAIN ANALYZE) |
mysql_list_tables | List the base tables visible through the whitelist |
mysql_describe_table | Column structure of a whitelisted table |
mysql_stats | Selected profile's process-lifetime stats window: profile name, totals / denials, average & P95 latency, top-N slow queries, per-table access counts |
For example, call list_profile with {}, then mysql_query with {"profile":"dev","sql":"SELECT * FROM myapp.orders LIMIT 10"} or mysql_stats with {"profile":"dev","top_n":5}. Keep the same profile when inspecting, changing, and verifying data.
The server takes a table snapshot for each profile during MCP initialization/discovery and registers one direct resource per visible base table. Resource names also identify the profile, so identical database and table names on different servers stay distinct:
| URI | MIME type | Content |
|---|---|---|
mysql:///schema/{profile}/{database}/{table} | application/sql | Current normalized SHOW CREATE TABLE output |
"Visible" is the intersection of what the profile's MySQL account can see and its security.table_whitelist. Views are not registered. Resource discovery is not capped by security.max_rows, and resource reads remain available even when select is absent from allowed_statements, because both operations execute fixed server-owned metadata SQL rather than user-submitted SQL.
The resource set is a discovery-time snapshot: a table created later appears after the next discovery or reconnect, while a dropped or newly inaccessible table returns MCP Resource Not Found. The resource content is live, so ALTER TABLE is reflected on the next read. Resource discovery and reads do not enter the audit log or mysql_stats; a discovery failure is logged with the profile name and clears only that profile's table resources; other profiles, tools, and the shared query-results App remain available.
The root-level resources.enabled switch applies to every profile. Set it to false to disable the entire resource feature. It defaults to true; when disabled, the server does not advertise Resources, register table or MCP App resources, or query any profile's MySQL during initialization/discovery. The interactive MCP App is therefore unavailable, while all eight tools, including mysql_query's text and structured results, remain available.
Prebuilt — download the tarball for your platform (linux_amd64 / linux_arm64 / darwin_arm64) from Releases (checksums included), or install with Go:
Docker — multi-arch images are published to GitHub Container Registry:
Copy config.example.yaml and adjust:
A minimal config:
Add sibling entries under profiles for other connections; each accepts the same mysql, security, and audit fields. The annotated example includes two profiles. The client examples below use this minimal config; for other configurations, pass every referenced password environment variable to the MCP process.
Claude Code:
Claude Desktop or any JSON-configured client:
Docker:
Docker note 1 — audit logs must live on a mounted volume. The container is destroyed with the session; if you enable audit logging, point
audit.log_dirat the mounted volume (e.g./data/logs) or the logs vanish with the container.Docker note 2 — reaching MySQL on the host. On macOS/Windows set
mysql.host: host.docker.internal; on Linux also append"--add-host=host.docker.internal:host-gateway"toargs.
mysql_query advertises the embedded ui://mcp-server-mysql/query-results resource to hosts that support MCP Apps. Successful calls include both the existing human-readable text and structured query data with a required profile field, so older or text-only hosts degrade without losing any result information. Query errors retain their text and carry the original {profile, sql} in result metadata so the App can identify the request. list_profile also returns text and structured data; the six remaining tools use text results.
The result view keeps up to 20 snapshots inside the current View, supports global and optional status filtering, natural numeric sorting, column visibility, row selection, and TSV/CSV/JSON copy. Results and history identify their profile, including failed and cancelled requests. Refresh invokes mysql_query through the host with the selected snapshot's original {profile, sql}, including after switching history; if the host does not expose tool calling to apps, the view explains that refresh is unavailable while all read-only controls continue to work. View history is memory-only and disappears when the View closes.
When overlapping requests receive a Host error or cancellation without enough information to identify the request, history marks its source as undetermined and preserves the candidate inputs. It does not assign that notification to a profile based on arrival order.
The production/default transport remains stdio. A stateless Streamable HTTP endpoint is available specifically for local MCP Apps development:
Connect the official Basic Host to http://127.0.0.1:3001/mcp. The HTTP listener rejects wildcard and non-loopback addresses, and its CORS policy only accepts the Basic Host origins on local port 8080; it is not an authenticated remote deployment mode.
Layer 0 — your MySQL account (strongly recommended). Run the server with a dedicated account that has only the privileges you intend to use (read-only workloads get SELECT only). Never root. This is the containment layer everything below reinforces.
Layer 1 — the AST main gate. Every statement is parsed by the TiDB parser (parse failure ⇒ denied), then must pass, in order: single-statement enforcement → statement-class allowlist (with a read/write tool cross-check: a write sent through mysql_query is denied even if writes are enabled) → per-class enable switches → dangerous-construct scan (SELECT ... INTO OUTFILE/DUMPFILE, LOAD_FILE() at any nesting depth) → missing-WHERE tripwire → full table-reference extraction checked against the default-deny whitelist.
Layer 2 — read-only transaction fallback. Reads executed through the single-statement read path (mysql_query, mysql_explain, mysql_list_tables, mysql_describe_table) and the fixed resource metadata path run inside START TRANSACTION READ ONLY — if the parser ever misclassified a write as a read, MySQL itself rejects it. (Write statements you explicitly enabled, and everything inside mysql_script — reads included — run outside this backstop; there, Layer 1 and Layer 0 are the controls.)
Layer 3 — driver-level lockout. The connection sets multiStatements=false, so COMMIT; DROP TABLE ...-style stacked injection is impossible at the protocol level even if every layer above failed.
Every denial comes back as machine-readable text — DENIED [rule_name]: reason — and the rule names are stable:
| Rule | Fires when |
|---|---|
parse_error | The SQL fails to parse (fail-closed — syntax errors and parser gaps alike) |
multi_statement | More than one statement in a single call |
unsupported_statement | SET / GRANT / CALL / USE / LOAD DATA / LOCK TABLES / transaction control |
wrong_tool | Write statement via mysql_query, or read statement via mysql_execute |
statement_not_enabled | Statement class not listed in allowed_statements |
table_whitelist | Any referenced table falls outside the whitelist |
dangerous_construct | INTO OUTFILE / INTO DUMPFILE / LOAD_FILE() |
unfiltered_write | UPDATE / DELETE without a WHERE clause |
script_ddl / script_too_long / script_empty | DDL inside a script / script over the statement cap / empty script |
invalid_query / not_select / invalid_format / invalid_identifier | Parameter validation of mysql_explain / mysql_describe_table |
mysql_script denials prefix the reason with the position of the offending statement: DENIED [rule]: statement N: reason.
The guard is the test suite's center of gravity: ~100 table-driven cases cover stacked-statement injection, versioned-comment smuggling, CTE-shadowing whitelist bypasses, INSERT ... SELECT table extraction, and more; end-to-end tests — whitelist enforcement, the READ ONLY backstop rejecting writes, script rollback, EXPLAIN-tree denials — run against a real MySQL 8.0 in testcontainers.
Security documentation you can't verify is marketing. The precise boundaries:
mysql_script, reads included, since they share the script's read-write transaction — execute without it; there, the AST gate plus your database account privileges (Layer 0) are the controls.unfiltered_write is a missing-WHERE tripwire, not full-table-write prevention: UPDATE t SET a=1 WHERE 1=1 passes it. It catches mistakes, not malice.mysql_list_tables and MCP resource discovery/read. Table discovery queries information_schema for base tables and filters every result through the whitelist; resource reads re-check the whitelist before SHOW CREATE TABLE. EXPLAIN FORMAT=TREE is another fixed-prefix path: the inner SELECT still passes the full guard pipeline first (the TiDB parser cannot parse FORMAT=TREE as a whole statement).mysql_stats calls, mysql_describe_table pre-check denials (invalid_identifier and its table_whitelist name check), and mysql_explain parameter denials (invalid_query, not_select, invalid_format). Script auditing follows actual execution: a guard-denied script yields one record for the whole script, and statements after a failed one — validated but never executed — are not recorded.profiles is a non-empty map. Names must match [a-z0-9][a-z0-9_-]*; description is optional and defaults to an empty string. Each profile independently applies the same defaults, without inheriting from other profiles. In the table below, mysql.*, security.*, audit.*, and description live under profiles.<name>; only resources.enabled is global.
Full annotated example: config.example.yaml. The governing principle is secure by default: omit allowed_statements and you're read-only; omit table_whitelist and everything is denied; leave block_unfiltered_writes unset and it's on.
And it fails closed at startup: an unreadable file, an unknown/misspelled key, an invalid duration, a malformed whitelist pattern, an unknown statement type, a negative script cap, or a missing mysql.user/mysql.database all abort the process — it refuses to run sick rather than degrade silently.
| Key | Default | Notes |
|---|---|---|
description | "" | Human-readable connection purpose, returned by list_profile |
mysql.host | 127.0.0.1 | Use host.docker.internal from inside Docker |
mysql.port | 3306 | |
mysql.user | — required | Dedicated least-privilege account recommended |
mysql.password | "" | Use ${MYSQL_MCP_PASSWORD} — see below |
mysql.database | — required | Also used to qualify unqualified table names |
mysql.pool.max_open / max_idle | 5 / 2 | Connection pool |
security.allowed_statements | [select] | Any of select / insert / update / delete / ddl; SHOW/DESCRIBE/EXPLAIN ride on select |
security.table_whitelist | [] = deny all | db.table patterns, glob per side (myapp.*, app_*.logs), case-insensitive |
security.max_rows | 1000 | Result sets truncated beyond this, with a marker |
security.query_timeout | 30s | Per-query context timeout |
security.block_unfiltered_writes | true | Deny UPDATE/DELETE without WHERE |
security.max_script_statements | 50 | Statement cap per mysql_script call |
resources.enabled | true | Set false to omit table/UI resources and skip initialization/discovery metadata queries |
audit.enabled | false | JSONL disk logging; in-memory session stats work regardless |
audit.log_dir | ~/.mcp-server-mysql/logs | Must be a mounted volume under Docker |
audit.slow_query_threshold | 1s | Queries above this are flagged slow |
audit.ring_buffer_size | 1000 | In-memory window backing mysql_stats |
Secrets never need to live in the file: the whole config is passed through environment-variable expansion before parsing, so ${ENV_VAR} works in any field. The config path itself can come from the MYSQL_MCP_CONFIG environment variable instead of --config.
mysql, security, and audit sections intact under a name such as profiles.dev; keep resources at the root.profile to all seven mysql_* tool calls. Use list_profile to discover available names. There is no implicit default profile, even with one connection.Legacy root connection settings, empty/invalid profiles, and unknown configuration fields are rejected. Profiles are static until restart. Pool construction is lazy: an unreachable database fails when that profile's tools/resources access it, while list_profile still lists the configured entry. A SQL statement or script uses one profile; existing whitelist-approved cross-schema access within that connection remains available. Cross-profile transactions and runtime profile management are not supported.
Disk logging is controlled independently by each profile's audit.enabled — default false: no log files, no log directory created. Each profile has its own in-memory statistics ring and slow-query threshold; mysql_stats reads only the requested profile's window and includes its name. Statistics are shared by callers using that profile in the process, work regardless of disk logging, and reset on restart.
When enabled, JSONL files rotate daily as audit-<profile>-<YYYY-MM-DD>.jsonl (for example, audit-dev-2026-09-15.jsonl). Profiles can share audit.log_dir without sharing files. Each line is one JSON object:
| Field | Meaning |
|---|---|
profile | Owning connection profile, filled by its logger |
ts / tool / sql | Timestamp, tool name, original SQL |
decision / rule | allowed or denied, and the rule that fired on denial |
class / tables | Statement class, referenced tables |
duration_ms / rows | Latency, rows returned or affected |
slow / truncated / error | Slow-query flag, truncation flag, error message |
skills/mysql-mcp is a companion skill that teaches Claude to use these tools well: pick the right tool, respect the security boundaries (single statement, whitelist, WHERE tripwire), and read DENIED [rule] messages correctly instead of blindly retrying. Install:
io.modelcontextprotocol/ui extension, and one embedded MCP App resource. Text fallback remains available to hosts without MCP Apps.mcp-server-mysql; it exposes 8 tools, direct table-schema resources, one shared UI resource, and no prompts.The frontend uses React/TypeScript, @modelcontextprotocol/ext-apps, and vite-plugin-singlefile. Its build emits one fully inlined HTML file and copies it to internal/ui/query-results.html, which Go embeds into the binary; a normal go build therefore does not require Node. The Dockerfile rebuilds the frontend in a Node stage and overwrites that committed bundle before compiling Go, preventing stale UI in release images.
Design docs live in docs/superpowers — each feature ships with a spec and an implementation plan.