AI Skill Hub 推荐使用:Dremio MCP 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
Dremio MCP 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Dremio MCP 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/dremio/dremio-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"dremio-mcp": {
"command": "npx",
"args": ["-y", "dremio-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Dremio MCP 执行以下任务... Claude: [自动调用 Dremio MCP MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"dremio_mcp": {
"command": "npx",
"args": ["-y", "dremio-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Table of Contents
This repo provides an Model Context Protocol (MCP) server for easing LLM integration with Dremio. If you are new to MCP and MCP Servers take our Dremio MCP Server course on Dremio University (DremioU). If you are familiar with these concepts already please proceed below.
The Dremio MCP server can be deployed in two ways:
For production deployments in Kubernetes environments, use the Helm chart:
docker build -t dremio-mcp:0.1.0 .
helm install my-dremio-mcp ./helm/dremio-mcp \ --set dremio.uri=https://dremio.example.com:9047
The MCP server runs locally on the machine that runs the LLM frontend (eg Claude). The installation steps are simple:
1. Clone or download this repository. 2. Install the uv package manager (note that the MCP server requires python 3.11 or later) - If you install this for the first time, restart your terminal at the end of the install 3. Ensure that you have python installed by running the command below. It should show python 3.11 or later (If you don't have python installed, follow the instructions here OR simply run uv python install)
$ uv python find 4. Do a sanity check by running the command and validating the output as shown below.
```shell
There are two configurations necessary before the MCP server can be invoked.
The quickest way to do this setup is -
$ uv run dremio-mcp-server config create dremioai \
--uri <dremio uri> \
# the endpoint portion of the URL for your environment
--pat <dremio pat> \
# https://docs.dremio.com/current/security/authentication/personal-access-tokens/#using-a-pat
# required for cloud: add your project ID if setting up for dremio cloud
# --project-id <dremio project id>
Note: the uri is api endpoint associated with your environment:
https://api.dremio.cloud or use the short hand prodhttps://api.eu.dremio.cloud or use the short hand prodemeaNote: For security purposes, if you don't want the PAT to leak into your shell history file, create a file with your PAT in it and give it as an argument to the dremio config.
Example:
$ uv run dremio-mcp-server config create dremioai \
--uri <dremio uri> \
--pat @/path/to/tokenfile \
Note: Claude has system requirements, such as node.js, please validate your system requirements with Claude official documentation.
$ uv run dremio-mcp-server config create claude
$ uv run dremio-mcp-server config list --type claude
Default config file: '/Users/..../Library/Application Support/Claude/claude_desktop_config.json' (exists = True)
{
'globalShortcut': '',
'mcpServers': {
'Dremio': {
'command': '/opt/homebrew/Cellar/uv/0.6.14/bin/uv',
'args': [
'run',
'--directory',
'...../dremio-mcp',
'dremio-mcp-server',
'run'
]
}
}
}
$ uv run dremio-mcp-server config list --type dremioai
Default config file: /Users/..../.config/dremioai/config.yaml (exists = True)
dremio:
enable_search: false
pat: ....
uri: ....
tools:
server_mode: FOR_DATA_PATTERNS
You are done!. You can start Claude and start using the MCP server

The rest of the documentation below provides details of the config files
---
#prometheus: #uri: ... #token: ... ```
There are 3 modes
FOR_DATA_PATTERNS - the normal mode where MCP server will allow LLM to look at tables and data to allow pattern discovery and other use casesFOR_SELF - a mode which allows the MCP server to introspect Dremio system, including workload analysis and so on.FOR_PROMETHEUS - a mode that allow MCP server to connect to your prometheus setup, if one exists, to enhance insights with Dremio related metricsMultiple modes can be specified with separated by ,
```bash
This file is located by default at $HOME/.config/dremioai/config.yaml but can be overriden using the --cfg option at runtime for dremio-mcp-server
```yaml
dremio: uri: https://.... # the Dremio URI pat: "@~/ws/tokens/idl.token" # PAT can be put in a file and used here with @ prefix project_id: <string> Project ID required for Dremio Cloud enable_search: <bool> # Optional: Enable semantic search allow_dml: <bool> # Optional: Allow MCP Server to create views in Dremio tools: server_mode: FOR_DATA_PATTERNS # the serverm
Note: This is applicable only for local installs
To setup the Claude config file (refer to this as an example) edit the Claude desktop config file
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAnd then add this section
{
"globalShortcut": "",
"mcpServers": {
"Dremio": {
"command": "uv",
"args": [
"run",
"--directory", "<toplevel git directory>"
"dremio-mcp-server",
"run"
]
}
}
}
This will pickup the default location of MCP server config file. It can also be passed in the args section above as "--config-file", "<custom config file>" after run
高质量的开源MCP工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,Dremio MCP 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | dremio-mcp |
| 原始描述 | 开源MCP工具:Dremio MCP server。⭐52 · Python |
| Topics | aidremiomcppython |
| GitHub | https://github.com/dremio/dremio-mcp |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-08 · 更新时间:2026-06-08 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端