The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the ClickHouse listing page.
A read-only-by-default Model Context Protocol (MCP) server for ClickHouse that provides schema discovery, read-only queries, execution-plan analysis, opt-in writes, and profile-based access to multiple servers from a single toolset deployment.
Read-only is enforced by the engine, not by SQL text matching: the query tools' clients carry ClickHouse's readonly=1, so writes, external table functions and query-level SETTINGS are refused by the server being queried. Writes live behind a separate tool that is not registered at all until a profile asks for it.
Requirements: Python 3.13+, a running ClickHouse instance, and connection details via environment variables or a config file.
Set a DSN and run the server with MCP Inspector:
A profile is one ClickHouse connection: a DSN plus the row and timeout caps that apply to it. A profile named default always exists; every tool takes an optional profile to reach another, and list_profiles reports what is configured.
Settings come from three sources, merged field by field, later winning:
config.json — any number of profiles;MCP_CLICKHOUSE_PROFILES_<NAME>_<FIELD> environment variables — any number of profiles;MCP_CLICKHOUSE_<FIELD> environment variables — the default profile only.Because the merge is per field rather than per profile, a config.json can carry the full set while a flat MCP_CLICKHOUSE_DSN repoints the default profile at a local server, leaving its other fields intact. With none of the three present, default falls back to http://default:@localhost:8123/default.
Each setting has one field name, spelled three ways — MCP_CLICKHOUSE_<FIELD>, MCP_CLICKHOUSE_PROFILES_<NAME>_<FIELD>, or the field lowercased as a JSON key:
| Field | Default | Hard ceiling |
|---|---|---|
DSN | http://default:@localhost:8123/default | — |
DESCRIPTION | none | — |
QUERY_MAX_ROWS | 500 | 1 000 |
QUERY_COMMAND_TIMEOUT_SECONDS | 30 | 300 |
SNAPSHOT_MAX_ROWS | 10 000 | 50 000 |
SNAPSHOT_COMMAND_TIMEOUT_SECONDS | 120 | 300 |
ALLOW_WRITE | false | — |
WRITE_COMMAND_TIMEOUT_SECONDS | 60 | 600 |
Caps are per profile. A value above its ceiling is clamped at startup; a value that is not an integer falls back to the default, and a value that is not a boolean leaves ALLOW_WRITE off.
Single connection: flat environment variables are the shortest path.
Multiple connections: use the user-scoped config.json, which keeps credentials out of the host's process environment.
~/.config/mcp-clickhousex/config.json%USERPROFILE%\.config\mcp-clickhousex\config.jsonNothing stops one profile from both reading and writing, but a separate write-enabled profile is the shape worth copying: it gives the writes their own DSN, so the credentials behind them can be scoped to what they actually need while the read profiles stay on a login whose grants stop at SELECT.
Profile names are case-insensitive and must be alphanumeric — no underscores or hyphens, since the structured env form splits on _ (MCP_CLICKHOUSE_PROFILES_WAREHOUSE_DSN is profile warehouse, field DSN). A name that breaks the rule is skipped, as is a config.json that is missing, unreadable, or not shaped {"profiles": {…}}; the server starts on whatever sources remain rather than failing.
DSN syntax: scheme://user:password@host:port/database. An https:// or clickhouses:// scheme enables TLS, and query-string parameters reach the driver (?connect_timeout=10) — except readonly, which the server always applies last, from the profile's ALLOW_WRITE.
URL-reserved characters in the username or password must be percent-encoded — # → %23, ? → %3F, / → %2F, @ → %40, % → %25. Username admin@org with password p#ss? becomes http://admin%40org:p%23ss%3F@host:8123/database.
All tools accept an optional profile; when omitted, the default profile is used.
Tools
| Tool | Description | Key params |
|---|---|---|
list_profiles | List configured connection profiles. Call first when picking a non-default profile. Returns name, description and allow_write per profile. | — |
run_query | Execute one read-only SELECT (CTEs allowed) or SHOW statement. Returns rows inline as CSV, or a chx://snapshots/{id} URI when snapshot=true. Inline limit: 500 rows (hard ceiling 1 000). Snapshot limit: 10 000 rows (hard ceiling 50 000). No INTO OUTFILE. | sql, parameters, database, profile, snapshot |
analyze_query | EXPLAIN a read-only SELECT; returns plan, pipeline or syntax, no result rows. SHOW is not an EXPLAIN target. | sql, parameters, database, profile, types |
run_command | Execute one write statement (DDL/DML). Advertised only when some profile sets ALLOW_WRITE (off by default); still refused at call time when the target profile is locked. Returns written_rows, written_bytes and query_id. Marked destructive; intended for human-supervised use. | sql, parameters, database, profile |
types — EXPLAIN variants: plan (indexes), pipeline, syntax. Defaults to plan and pipeline.parameters — Named parameters for driver placeholders, %(name)s or {name:Type}.database — Session default database for unqualified names; otherwise qualify as db.table.Catalog discovery has no dedicated tool: list databases, tables and columns — and read sizes (total_rows, total_bytes) and keys (primary_key, sorting_key, partition_key) — with run_query over system.databases, system.tables and system.columns, which take ordinary WHERE predicates where SHOW takes only LIKE. SHOW earns its place for DDL a listing cannot give you — SHOW CREATE TABLE/VIEW/DICTIONARY for codecs, TTLs and the full column list.
Results are RFC 4180 CSV: the first row is the header, the rest are data. NULL is written as \N, ClickHouse's own CSV null representation, so it stays distinct from the empty string.
A plan's Indexes section is not authoritative about a table's keys: it names only the key columns the query used, so a query that skips the leading key column reports a shorter key than the table has. Confirm from system.tables, which answers in a few dozen tokens where SHOW CREATE TABLE spends several hundred to say the same thing.
The row caps that applied to a call arrive with its result as truncated and row_limit.
Resources
| URI | Description |
|---|---|
chx://profiles | List configured connection profiles, including allow_write (application/json). Same data as list_profiles. |
chx://snapshots/{id} | Fetch a query result snapshot as CSV; id comes from the snapshot_uri that run_query returns. Expires after 7 days. |
Every client this server opens carries ClickHouse's own readonly=1, so the engine — not just the server's SQL checks — refuses:
INSERT, DDL, ALTER … UPDATE, SYSTEM, GRANT);url(), s3(), remote(), mysql() and friends, so a query cannot reach a host outside the configured profile;SETTINGS, so the row and time caps cannot be raised by the SQL an agent supplies, and INTO OUTFILE is refused.readonly=2 is deliberately not used: it permits SETTINGS changes, which would make those caps advisory. The tradeoff is that benign per-query tuning (SETTINGS max_threads = …) is refused too.
On top of that, run_query accepts SELECT / WITH … SELECT / SHOW and analyze_query only the first two, one statement per call. Interactive queries enforce a tight row cap (default 500, hard ceiling 1 000); for larger extracts use snapshot=true (default 10 000, hard ceiling 50 000).
Writes are opt-in, and invisible until then. run_command runs on a client carrying readonly=0, so it executes arbitrary DDL and DML — and, with readonly lifted, the external table functions come back too. Unless at least one configured profile sets ALLOW_WRITE (default false), the tool is not registered at all: it never appears in tools/list, so a read-only deployment spends no context on it and offers no write surface an agent could be talked into. Once any profile opts in, the tool is advertised server-wide and is still refused at call time on profiles that remain locked; list_profiles reports allow_write per profile so an agent can pick a writable one.
ALLOW_WRITE is a soft, application-level guard, not a security boundary — it constrains this server, not the database. For a genuine read-only guarantee, connect with a login whose ClickHouse grants stop at SELECT, and keep write-enabled profiles pointed at credentials scoped to only what they need. run_command carries destructive and openWorld tool annotations so hosts can gate it behind confirmation, but honoring those annotations is the host's choice. ClickHouse has no transaction to roll back in here: a statement that lands, stays.
Use environment variables or the config file for connection credentials — never commit secrets.
Snippets use uvx mcp-clickhousex (no clone required; ensure uv is on your PATH). Replace connection details as needed; the env block is unnecessary when the DSN already comes from config.json or the environment.
Claude Code and Cursor read the same mcpServers shape:
Codex (TOML):
OpenCode:
GitHub Copilot:
Tests require a running ClickHouse instance; the suite creates a sample table in the default database, seeds it, and drops it after.
The harness locates the instance through MCP_TEST_CLICKHOUSE_DSN, falling back to http://admin:password123@localhost:8123/default. Set it to point tests at another server without touching your production MCP_CLICKHOUSE_DSN.
The suite configures two profiles on that one instance — a read-only default and a write-enabled writable — so both halves of the write gate are exercised: run_command is advertised because a profile opts in, and is still refused against the profile that does not.
Open issues or PRs; follow existing style and add tests where appropriate.