1. Conduid
  2. Developer Tools
  3. dremio-lite
MCP server · Developer Tools

dremio-lite

TypeScript MCP server for Dremio data exploration

Unclaimed devtools
39Low

Scored 4 months ago · breakdown

About dremio-lite

dremio-lite is an MCP server published by git+guillaume-galp in the Developer Tools category: typeScript MCP server for Dremio data exploration. It has been installed 0 times through Conduid.

Install

Install
npx @guillaume-galp/dremio-mcp-lite
Claude Code
claude mcp add dremio-mcp-lite -- npx -y @guillaume-galp/dremio-mcp-lite
npx
npx -y @guillaume-galp/dremio-mcp-lite

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about dremio-lite

Powered by Claude · Grounded in docs

I know everything about dremio-lite. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

dremio-mcp-lite

A TypeScript MCP (Model Context Protocol) server for Dremio data exploration. This tool enables AI assistants to interact with Dremio through a set of read-only operations.

Features

  • Fast Startup: Optimized for <1s startup time for VS Code stdio MCP
  • Read-Only Operations: Safe exploration of your Dremio data catalog
  • 6 Core Tools:
    • catalog_browse: List sources, spaces, folders, and tables
    • schema_get: Get table schemas
    • sql_query: Execute SELECT queries (max 1000 rows)
    • table_preview: Preview first 10 rows of a table
    • search_catalog: Find tables by name
    • explain_query: Get query execution plans

Installation

npm install @guillaume-galp/dremio-mcp-lite

Configuration

Create a .env file in your project root:

DREMIO_URL=http://localhost:9047
DREMIO_PAT=your_personal_access_token_here

# SSL Configuration (optional)
# Set to 'false' to disable SSL certificate verification for self-signed certificates
# WARNING: Only use in development/testing environments
DREMIO_REJECT_UNAUTHORIZED=true

Or copy from the example:

cp .env.example .env

SSL Certificate Configuration

When connecting to Dremio instances with self-signed SSL certificates (common in internal/corporate environments), you may encounter certificate verification errors. To disable SSL certificate verification:

  1. Set DREMIO_REJECT_UNAUTHORIZED=false in your .env file
  2. Important: Only use this setting in development or testing environments
  3. Never disable certificate verification in production environments

Example for self-signed certificates:

DREMIO_URL=https://dremio.internal.company.com:9047
DREMIO_PAT=your_personal_access_token_here
DREMIO_REJECT_UNAUTHORIZED=false

Getting a Dremio Personal Access Token

  1. Log in to your Dremio instance
  2. Go to Settings → Personal Access Tokens
  3. Click "Create Token"
  4. Copy the token and add it to your .env file

Usage

As an MCP Server

Add to your MCP client configuration (e.g., VS Code mcp.json):

{
  "mcpServers": {
    "dremio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@guillaume-galp/dremio-mcp-lite"
      ],
      "envFile": "${userHome}/.dremio-mcp.env",
      "gallery": true
    }
  }
}

Configuration Notes:

  • type: Must be "stdio" for standard input/output communication
  • -y: Auto-confirms npx package installation
  • envFile: Path to your environment file containing DREMIO_URL and DREMIO_PAT
    • Recommended: Use ${userHome} variable: "${userHome}/.dremio-mcp.env"
    • Windows absolute path: "C:\\Users\\<YourUsername>\\.dremio-mcp.env"
    • macOS/Linux absolute path: "/Users/<YourUsername>/.dremio-mcp.env" or "/home/<YourUsername>/.dremio-mcp.env"
    • Replace <YourUsername> with your actual username
  • gallery: Optional, set to true to show in MCP gallery

Or if installed globally:

{
  "mcpServers": {
    "dremio": {
      "type": "stdio",
      "command": "dremio-mcp-lite",
      "envFile": "${userHome}/.dremio-mcp.env",
      "gallery": true
    }
  }
}

Available Tools

catalog_browse

Browse the Dremio catalog structure.

// List all sources
catalog_browse()

// Browse a specific path
catalog_browse({ path: ["source_name", "folder"] })

schema_get

Get the schema definition of a table.

schema_get({ table_path: ["source", "schema", "table"] })

sql_query

Execute SELECT queries (read-only).

sql_query({
  sql: "SELECT * FROM source.schema.table WHERE id > 100",
  max_rows: 500  // Optional, default 1000
})

table_preview

Quick preview of table data (first 10 rows).

table_preview({ table_path: ["source", "schema", "table"] })

search_catalog

Search for tables and datasets by name.

search_catalog({ search_term: "customer" })

explain_query

Get the execution plan for a query.

explain_query({ sql: "SELECT * FROM source.schema.table" })

Security

This MCP server implements several security measures:

  • Read-Only Operations: Only SELECT queries are allowed. All modifications (INSERT, UPDATE, DELETE, etc.) are blocked.
  • SQL Injection Protection: Table paths are properly escaped using SQL identifier quoting to prevent injection attacks.
  • Query Validation: SQL queries are validated to ensure they are SELECT statements, even when prefixed with comments or whitespace.
  • Personal Access Tokens: Uses Dremio PAT authentication stored securely in .env file (never commit .env to version control).

Development

Build

npm run build

Run Locally

npm start

Publishing to npm

The package is automatically published to npm when a version tag is pushed:

  1. Update the version in package.json:

    npm version patch  # or minor, or major
    
  2. Push the tag to GitHub:

    git push origin master --tags
    

    Or if using the main branch:

    git push origin main --tags
    
  3. The GitHub Actions workflow will automatically build and publish to npm

Prerequisites:

  • NPM_TOKEN must be configured in GitHub repository secrets
  • The token must have publish access to the @guillaume-galp scope on npmjs.org

Requirements

  • Node.js >= 18
  • Access to a Dremio instance (default port: 9047)
  • Valid Dremio Personal Access Token

License

MIT

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About dremio-lite

How do I install dremio-lite?

Run npx @guillaume-galp/dremio-mcp-lite, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is dremio-lite safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is dremio-lite still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.