CockroachDB (Docker) MCP Server
CommunityContributed by amineelkouhen
Connect to CockroachDB clusters via Docker. Run SQL queries and transactions, manage databases, tables, indexes, users and privileges, monitor cluster health and jobs, and perform vector search, backups, changefeeds, and multi-region operations.
About the CockroachDB (Docker) MCP Server
The CockroachDB (Docker) MCP server is a local (stdio) Model Context Protocol server available in the McpMux registry. Connect to CockroachDB clusters via Docker. Run SQL queries and transactions, manage databases, tables, indexes, users and privileges, monitor cluster health and jobs, and perform vector search, backups, changefeeds, and multi-region operations. This is a community-contributed MCP server by amineelkouhen.
Install the CockroachDB (Docker) MCP server with one click using McpMux. It works with Cursor, Claude Desktop, Claude Code, VS Code, ChatGPT, Windsurf, JetBrains, and any MCP-compatible AI client. This server requires an API key — McpMux securely stores your credentials with AES-256-GCM encryption.
Transport Configuration
{
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"CRDB_HOST",
"-e",
"CRDB_PORT",
"-e",
"CRDB_DATABASE",
"-e",
"CRDB_USERNAME",
"-e",
"CRDB_PWD",
"-e",
"CRDB_SSL_MODE",
"mcp/cockroachdb:latest"
],
"env": {
"CRDB_HOST": "${input:CRDB_HOST}",
"CRDB_PORT": "${input:CRDB_PORT}",
"CRDB_DATABASE": "${input:CRDB_DATABASE}",
"CRDB_USERNAME": "${input:CRDB_USERNAME}",
"CRDB_PWD": "${input:CRDB_PWD}",
"CRDB_SSL_MODE": "${input:CRDB_SSL_MODE}"
},
"metadata": {
"inputs": [
{
"id": "CRDB_HOST",
"label": "CockroachDB Host",
"description": "Host name or address of a CockroachDB node or load balancer. Use host.docker.internal instead of localhost/127.0.0.1 to reach a CockroachDB instance running on the host machine.",
"type": "text",
"required": false,
"secret": false,
"default": "127.0.0.1",
"placeholder": "host.docker.internal"
},
{
"id": "CRDB_PORT",
"label": "CockroachDB Port",
"description": "Port number of the SQL interface of the CockroachDB node or load balancer.",
"type": "number",
"required": false,
"secret": false,
"default": "26257",
"placeholder": "26257"
},
{
"id": "CRDB_DATABASE",
"label": "Database",
"description": "Database name to use as the current database.",
"type": "text",
"required": false,
"secret": false,
"default": "defaultdb",
"placeholder": "defaultdb"
},
{
"id": "CRDB_USERNAME",
"label": "Username",
"description": "The SQL user that will own the client session.",
"type": "text",
"required": false,
"secret": false,
"default": "root",
"placeholder": "root"
},
{
"id": "CRDB_PWD",
"label": "Password",
"description": "The SQL user's password. Leave empty for insecure clusters that do not require a password.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "********"
},
{
"id": "CRDB_SSL_MODE",
"label": "SSL Mode",
"description": "Which type of secure connection to use. Set to verify-full and provide certificate paths for CockroachDB Cloud or secure clusters.",
"type": "select",
"required": false,
"secret": false,
"default": "disable",
"options": [
{
"value": "disable",
"label": "disable"
},
{
"value": "allow",
"label": "allow"
},
{
"value": "prefer",
"label": "prefer"
},
{
"value": "require",
"label": "require"
},
{
"value": "verify-ca",
"label": "verify-ca"
},
{
"value": "verify-full",
"label": "verify-full"
}
]
}
]
}
}Categories
Tags
Supported AI Clients
The CockroachDB (Docker) MCP server works with all MCP-compatible AI clients through McpMux:
Related MCP Servers
MongoDB (Docker)
Connect to MongoDB databases and Atlas clusters via Docker. Query collections, inspect schemas, manage indexes, and run aggregation pipelines in an isolated container.
MongoDB (npx)
Connect to MongoDB databases and Atlas clusters. Query collections, inspect schemas, manage indexes, and run aggregation pipelines through the official MongoDB MCP server.

PostgreSQL (Docker)
Query PostgreSQL databases, analyze performance, and optimize indexes via Docker. Execute SQL, inspect schemas, get EXPLAIN plans, identify slow queries, and run health checks.

PostgreSQL (uvx)
Query PostgreSQL databases, analyze performance, and optimize indexes. Execute SQL, inspect schemas, get EXPLAIN plans, identify slow queries, and run health checks via Postgres MCP Pro.
Redis (Docker)
Interact with Redis databases via Docker. Execute commands, manage keys, and work with data structures across standalone, cluster, and Sentinel modes.
Redis (uvx)
Interact with Redis databases. Execute commands, manage keys, and work with data structures across standalone, cluster, and Sentinel modes.
Install CockroachDB (Docker) with McpMux
One-click install from the McpMux desktop app. Auto-configures for Cursor, Claude, VS Code, ChatGPT, Windsurf, JetBrains, and any MCP-compatible client.