Install
$ agentstack add skill-dremio-cli-dremio-setup ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
name: dremio-setup description: Setup wizard for drs CLI — install, configure, verify connection to Dremio Cloud user_invocable: true triggers:
- "setup dremio"
- "install drs"
- "configure dremio"
- "connect to dremio"
- "dremio config"
- "getting started"
Dremio Setup Wizard
Follow these steps to install and configure the drs CLI for Dremio Cloud.
Step 1: Install drs
Choose one method:
# Recommended: install as a standalone tool via uv
uv tool install drs
# Alternative: install via pip
pip install drs
# Verify installation
drs --version
Step 2: Get Your Credentials
You need three values from Dremio Cloud:
- URI — Your Dremio Cloud endpoint (e.g.,
https://app.dremio.cloud) - Personal Access Token (PAT) — Generate at: Dremio UI > Account Settings > Personal Access Tokens > Create Token
- Project ID — Found in the URL when viewing your project:
https://app.dremio.cloud/project//...
Step 3: Create Config File
Create the config file at ~/.config/dremioai/config.yaml:
mkdir -p ~/.config/dremioai
Write the following content, replacing placeholders with your values:
# ~/.config/dremioai/config.yaml
uri: https://app.dremio.cloud
pat: YOUR_PERSONAL_ACCESS_TOKEN
project_id: YOUR_PROJECT_ID
Secure the file since it contains your PAT:
chmod 600 ~/.config/dremioai/config.yaml
Step 4: Verify Connection
# Run a simple test query
drs query run "SELECT 1 AS connected"
Expected output: a single row with connected = 1.
If this fails, check:
- 401 Unauthorized — PAT is invalid or expired. Generate a new one.
- 403 Forbidden — PAT lacks permissions for the project. Check project membership.
- Connection refused — URI is wrong. Verify the endpoint.
- Project not found — Project ID is incorrect. Copy it from the URL bar.
Step 5: Explore Your Catalog
# List top-level sources and spaces
drs catalog list
# Describe a specific source
drs catalog get my_source
# Run a real query against your data
drs query run "SELECT * FROM my_source.my_schema.my_table LIMIT 5"
Step 6 (Optional): Configure MCP Integration
To use drs as an MCP server (e.g., with Claude Code or other AI tools):
drs mcp
This starts the MCP server, exposing Dremio operations as tools. Configure your MCP client to connect to the drs process.
For Claude Code, add to your MCP config:
{
"mcpServers": {
"dremio": {
"command": "drs",
"args": ["mcp"]
}
}
}
Troubleshooting
| Symptom | Fix | |---|---| | command not found: drs | Ensure ~/.local/bin (uv) or pip's bin dir is on your PATH | | Config file not found | Verify path is exactly ~/.config/dremioai/config.yaml | | SSL errors | Check your network/proxy settings; try export REQUESTS_CA_BUNDLE=/path/to/cert | | Timeout on queries | Large queries may take time; check job status with drs jobs list |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: dremio
- Source: dremio/cli
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.