AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Dremio Setup

skill-dremio-cli-dremio-setup · by dremio

A Claude skill from dremio/cli.

No reviews yet
0 installs
48 views
0.0% view→install

Install

$ agentstack add skill-dremio-cli-dremio-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-dremio-cli-dremio-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Dremio Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. URI — Your Dremio Cloud endpoint (e.g., https://app.dremio.cloud)
  2. Personal Access Token (PAT) — Generate at: Dremio UI > Account Settings > Personal Access Tokens > Create Token
  3. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.