Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SuperDB MCP Servershow me the schema of my users.csv file"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SuperDB MCP Server
An MCP (Model Context Protocol) server for SuperDB that enables AI assistants to better compose SuperSQL queries, optionally backed by an LSP.
About
SuperDB is the successor to zq from Brim Data. As of Jan 2026, it is still in pre-release with limited public documentation, so LLMs have little knowledge of its syntax. This MCP server provides the context AI assistants need to write correct queries.
Installation
Claude Code CLI
Using @latest auto-upgrades the MCP server on each Claude launch. To pin a
specific version, replace @latest with a version number (e.g., @0.51231.6).
Manual Configuration
Add to your Claude Code settings (~/.claude/settings.json) or project .mcp.json:
Or install globally:
From Source
Tools
Query Tools
super_query
Execute a SuperSQL query on data files.
super_validate
Validate query syntax without executing.
super_schema
Inspect types in a data file by sampling records.
Database Tools
super_db_list
List all pools in a SuperDB database.
super_db_query
Query data from a database pool.
super_db_load
Load data into a pool.
super_db_create_pool
Create a new pool.
Info Tools
super_info
Get SuperDB version info, environment configuration, LSP availability, and installation instructions.
super_lsp_status
Check if the SuperDB LSP is installed and get installation instructions if not.
super_help
Get SuperDB documentation (bundled expert guide or migration docs).
super_test_compat
Test a query against multiple SuperDB versions to detect breaking changes.
LSP Tools
Require SUPERDB_LSP_PATH environment variable to be set.
super_complete
Get code completions for a SuperSQL query at a cursor position.
super_docs
Get documentation for a symbol at a position in a query.
Example Usage
With the MCP server configured, Claude can execute queries like:
No shell escaping needed - the query string is passed directly.
Requirements
Node.js 18+
superbinary in PATH:Homebrew (official, latest build)
asdf-superdb (community, versioned builds)
Versioning
SuperDB is in active pre-release development without official versioned releases. The only official builds are via Homebrew cask, identified by git SHA rather than version numbers.
To manage this, this repo uses pseudo-versions in the format 0.YMMDD (last
digit of year + month + day). For example, 0.51231 represents a build from
2025-12-31. See
asdf-superdb
for more details on the versioning scheme.
This MCP server versions to match the bundled documentation:
0.51231.0- initial release with docs for SuperDB pseudo-version 0.512310.51231.1,.2, etc. - MCP-only patches (no doc changes)
The super_info tool reports both your runtime version and the bundled docs version, warning if they differ.
License
BSD 3-Clause License