CockroachDB MCP Server
@Swayingleaves
About CockroachDB MCP Server
No overview available yet
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"cockroachdb-mcp-server-swayingleaves": {
"command": "npx",
"args": [
"-y",
"@smithery/cli",
"install",
"@Swayingleaves/cockroachdb-mcp-server",
"--client",
"claude"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is CockroachDB MCP Server?
CockroachDB MCP Server is an MCP server for Cursor that allows direct interaction with a CockroachDB database. It implements the Model Context Protocol (MCP) specification, providing tools, resources, and prompts for database operations.
How to use CockroachDB MCP Server?
Install dependencies with pip install -r requirements.txt and install uv via the official install script. Configure the server in Cursor by adding a JSON entry under mcpServers with the command uv, its arguments pointing to the server directory, and the JDBC URL, username, and password. The server can then be used through Cursor's MCP integration.
Key features of CockroachDB MCP Server
- Connect to and disconnect from CockroachDB databases.
- Retrieve all tables and table schema information.
- Execute SQL queries directly.
- Provide database status resources and SQL query templates.
- Automatic reconnection and TCP keep-alive mechanisms.
- Detailed rotating logs for troubleshooting.
Use cases of CockroachDB MCP Server
- Query CockroachDB databases interactively from Cursor.
- Browse database tables and their structures without a separate client.
- Execute ad‑hoc SQL queries during development or debugging.
FAQ from CockroachDB MCP Server
How do I connect to a CockroachDB database?
Use the connect_database or initialize_connection tool with the JDBC URL, username, and password.
What if I encounter connection problems?
Check the server log file logs/cockroachdb_mcp.log for details. Common issues include connection refused, authentication failed, and connection timeout.
Does the server handle special characters in passwords?
Yes, it uses psycopg2 which automatically handles special characters such as @, %, and & without requiring additional URL encoding.
How does the server prevent connection timeouts?
The server enables TCP keep‑alive by default: it sends keepalive packets after 30 seconds of idle time, every 10 seconds, and gives up after 5 attempts.
What transport does the server use?
The server runs as a subprocess via the uv command and communicates with Cursor through the MCP stdio transport. Authentication is passed as configuration parameters.
More Databases MCP servers

PostgreSQL
modelcontextprotocolModel Context Protocol Servers
mcp-server-duckdb
ktanaka101A Model Context Protocol (MCP) server implementation for DuckDB, providing database interaction capabilities
Multi Database MCP Server
FreePeakA powerful multi-database server implementing the Model Context Protocol (MCP) to provide AI assistants with structured access to databases.
MCP Server for Milvus
zilliztechModel Context Protocol Servers for Milvus
Neon MCP Server
neondatabase-labsMCP server for interacting with Neon Management API and databases
Comments