drill-mcp
Official MCP server for Apache Drill, enabling read-only SQL queries and inspection of schemas, storage plugins, and cluster/query state.
README
Drill-MCP Server
The official MCP server for Apache Drill.
It lets an MCP client run read-only (and narrowly, explicitly allow-listed
write) SQL against a Drill cluster, and inspect schemas, storage plugins,
and cluster/query state. It does not implement Drill administration
(ALTER SYSTEM, storage-plugin management) — see "Safety model" below.
Install
pip install drill-mcp # REST backend
pip install drill-mcp[jdbc] # adds the JDBC backend (needs a JVM)
pip install drill-mcp[kerberos] # adds SPNEGO auth for the REST backend
The base install has no JVM dependency: the default REST backend talks to
Drill over plain HTTP via httpx. The jdbc extra pulls in
jaydebeapi/JPype1 and is only needed if you select backend: jdbc
(see "Backends" below).
Quickstart
drill-mcp --url http://localhost:8047
# or
drill-mcp --config /etc/drill-mcp/drill.yaml
drill-mcp --help lists every CLI flag.
Register it with an MCP client:
{
"mcpServers": {
"drill": {
"command": "drill-mcp",
"args": ["--config", "/etc/drill-mcp/drill.yaml"]
}
}
}
Configuration
Configuration is merged from three sources, each overriding the last:
config file → DRILL_* environment variables → CLI flags.
Because the environment wins over the file, a stale exported
DRILL_PASSWORD silently overrides a password: set in the config file —
unset it if the file is meant to be authoritative.
There is no --user/--password CLI flag and no tool accepts a credential
as an argument; user/password can only be set via the config file or
DRILL_USER/DRILL_PASSWORD.
Every config key, its default, its environment variable, and its CLI flag
are documented in docs/configuration.md.
drill.example.yaml is a complete example file with
every key present.
Tools
| Tool | Description |
|---|---|
run_query |
Run one SQL statement |
list_schemas |
List visible schemas |
list_tables |
List tables in a schema |
describe_table |
Column names, types, and nullability where the plugin reports it |
list_storage_plugins |
Plugin configs, secrets redacted |
cluster_status |
Drillbit membership and status |
list_profiles |
Recent and running queries |
get_profile |
Full profile for one query id |
cancel_query |
Cancel a running query |
list_storage_plugins, cluster_status, list_profiles, get_profile,
and cancel_query are management tools: they require the REST backend
and raise a clear ToolError on the JDBC backend rather than failing
silently or returning empty data.
Full parameters, return shapes, errors, and per-tool surprises are in
docs/tools.md.
Safety model
- Writes are denied by default.
CREATE TABLE AS,CREATE VIEW,DROP TABLE, andDROP VIEWare permitted only into plugins listed inwritable_plugins.INSERT,UPDATE,DELETE,MERGE,ALTER,USE, andREFRESHare always rejected, no matter whatwritable_pluginscontains. ALTER SYSTEMand storage-plugin create/update/delete are not implemented at all. There is no flag, config key, or code path that turns them on — there is nothing for such a tool to call.- Exactly one statement per call, checked with a real SQL parser (sqlglot's Drill dialect), not a regex, so a write hidden in a comment, a string literal, or a stacked statement does not slip through. Anything that fails to parse — including a tokenizer failure — is rejected.
EXPLAINrecurses. The guard strips a leadingEXPLAINorEXPLAIN PLAN FORand re-checks the remaining statement against the same allowlist and hidden-schema rules, with bounded recursion depth.hidden_schemasfilters more than schema listings. Beyond refusing queries against a hidden schema, it filters the result rows of everySHOWcommand (not onlySHOW SCHEMAS), because Drill'sSHOWgrammar gives sqlglot no reliable way to identify which spelling lists schemas. This is a deliberate fail-closed trade: a table or file whose name happens to match a hidden-schema prefix is incidentally hidden too. Seedocs/tools.mdfor the full explanation. HidingINFORMATION_SCHEMAdoes not break the metadata tools, which query it internally regardless and simply omit hidden entries from their output.- Secrets are always redacted from
list_storage_pluginsoutput. This is not configurable off. - Results are capped by
max_rows; a caller may lower the cap for a single call but never raise it above the configured limit. A truncated result is marked"truncated": true.
Backends
- REST (default,
backend: rest): talks to a Drillbit's HTTP endpoints overhttpx. Works out of the box, no JVM required. - JDBC (
backend: jdbc, needs thejdbcextra): usesjaydebeapi/JPype1against Drill's JDBC driver. It exists mainly because Kerberos is materially less painful through the Drill JDBC driver than through Python SPNEGO. It needs a JVM andjdbc_driver_pathpointing atdrill-jdbc-all.jar. Management tools are unavailable on this backend, since Drill's management API is REST-only, andrun_querynever returns aquery_idon this backend.
Wire-level behavior — identifier quoting, INFORMATION_SCHEMA queries, and
the per-plugin-type column-discovery strategy in describe_table — follows
sqlalchemy-drill, the
most complete and maintained reference for talking to Drill from Python.
PyDrill was evaluated and not adopted: it has no form-based login, no
Kerberos support, and its last release was in 2018.
Development
pip install -e ".[dev]"
pytest
The test suite needs no live Drill cluster and no JVM: Drill's wire
protocol is mocked at the transport boundary, so pytest runs anywhere
Python does.
Credits and license
Wire-level behavior follows sqlalchemy-drill.
Licensed under the Apache License, Version 2.0. See NOTICE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.