drill-mcp
OfficialProvides tools for interacting with Apache Drill, enabling SQL query execution, schema/table inspection, storage plugin listing, and cluster status monitoring.
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., "@drill-mcpshow me the tables in the cp schema"
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.
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 backendThe 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).
Related MCP server: telemetry-mcp
Quickstart
drill-mcp --url http://localhost:8047
# or
drill-mcp --config /etc/drill-mcp/drill.yamldrill-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 one SQL statement |
| List visible schemas |
| List tables in a schema |
| Column names, types, and nullability where the plugin reports it |
| Plugin configs, secrets redacted |
| Drillbit membership and status |
| Recent and running queries |
| Full profile for one query id |
| 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]"
pytestThe 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceRead-only MCP server for SQL databases (SQL Server, Postgres, SQLite) with multi-server support and three-layer safety using AST validation and linting.MIT
- Alicense-qualityAmaintenanceA read-only MCP server for querying telemetry data from configurable backends. Provides tools to list sources, describe schemas, run bounded queries, and compute aggregates.MIT
- Alicense-qualityCmaintenanceA lightweight MCP server for exploring Dremio data catalogs. It provides read-only tools for browsing catalogs, querying tables, and previewing data.14MIT
- FlicenseAqualityCmaintenanceProduction-oriented MCP server for Microsoft SQL Server, enabling query execution, database discovery, schema introspection, and metadata inspection via MCP clients.63
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apache/drill-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server