Official ClickHouse MCP server for querying and exploring ClickHouse clusters and chDB.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
uvx mcp-clickhouse
MCP client config
{
"mcpServers": {
"clickhouse": {
"command": "uvx",
"args": [
"mcp-clickhouse"
]
}
}
}Run
docker run -i --rm ghcr.io/clickhouse/mcp-clickhouse:0.6.0
MCP client config
{
"mcpServers": {
"clickhouse": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/clickhouse/mcp-clickhouse:0.6.0"
]
}
}
}