AI-first CLI for dbt metadata extraction - Fast, modern Python tool
Project description
dbt-meta
⚡ AI-first CLI for dbt metadata extraction
dbt-meta is a lightning-fast command-line tool that extracts metadata from dbt's artifacts for DEs and AI agents, eliminating the need to parse .sql files or query your data warehouse for schema information. This is especially useful for fast and accurate agent operation, for example, Claude Code.
✨ Features
- 🎯 Works out-of-box - Simple Mode: just run
dbt compileand start using - ⚙️ TOML configuration - Modern config files with XDG compliance (optional)
- ⚡ Lightning fast - Optimized Python with LRU caching and orjson parser
- 🔄 Production Mode - Full
deferworkflow support for multi-project setups and development environment - 📊 AI-friendly JSON - Machine-readable structured output (
-jflag) - 🔍 Rich metadata - Schema, columns, dependencies, config, compiled SQL
- 🌳 Dependency navigation - Trace upstream/downstream models
- 🔎 Smart search - Find models by name or description
- 🎨 Beautiful UI - Rich terminal formatting with helpful examples
- ⚡ Combined flags - Use
-dj,-ajd,-jmfor faster typing
🤖 Built for AI Workflows
dbt-meta was specifically designed to eliminate AI agent hallucinations when working with dbt projects.
The Problem
AI agents (like Claude Code, GitHub Copilot, ChatGPT) often hallucinate when working with dbt:
- ❌ Wrong table names - Confusing alias vs filename (
customersvsdim_customers) - ❌ Wrong schema names - Confusing prod and dev schemas
- ❌ Unknown dependencies - Missing refs/sources in lineage
- ❌ Incorrect column types - Using wrong data types in WHERE clauses
- ❌ Non-existent fields - Querying columns that don't exist
The Solution
Following Anthropic's recommendation to use CLI tools over MCP for AI agents, dbt-meta provides:
✅ Fast - Optimized Python with caching, no repeated manifest parsing ✅ Deterministic JSON - No parsing ambiguity, structured output ✅ Schema validation - Prevents hallucinations by providing accurate metadata ✅ Type-safe - Mypy strict mode, comprehensive test coverage (91%+)
Integration
dbt-meta integrates seamlessly with:
- Claude Code (Anthropic) - Add to allowed commands in
.claude/settings.local.json - GitHub Copilot - Use in terminal and inline suggestions
- ChatGPT / Custom GPTs - Execute commands and parse JSON output
- Other AI agents - Standard CLI interface with JSON output
Why CLI over MCP?
Anthropic recommends CLI tools for AI agents because they:
- Have deterministic, structured output
- Are faster and more reliable
- Work in any environment
- Don't require additional infrastructure
dbt-meta follows this best practice, providing a lightning-fast, reliable interface for AI agents to access dbt metadata.
Performance
dbt-meta uses several optimization techniques:
- LRU Caching: ManifestParser cached with
@lru_cache(maxsize=1) - orjson: Fast JSON parsing (2-3x faster than standard json)
- Lazy loading: Manifest parsed only when needed
- Catalog fallback: Use
catalog.jsoninstead of BigQuery queries
Measured performance (~900 models manifest):
| Command | Time | Notes |
|---|---|---|
meta schema |
~250ms | Manifest only |
meta info |
~335ms | Manifest only |
meta parents --all |
~300ms | Traversed 295 ancestors |
meta columns (catalog) |
~50ms | With fresh catalog.json |
meta columns (BigQuery via bq CLI) |
~2-3s | Fallback when catalog stale |
Tip: Keep catalog.json fresh (prod state) for fastest columns performance.
But this only works for unmodified columns. For models built using defer in dev schema,
column metadata is only in DWH.
📦 Installation
PyPI Installation (Recommended)
# Install from PyPI (when published)
pip install dbt-meta
# Verify installation
dbt-meta --version
# or use shorter alias
meta --version
Development Installation
# Clone repository
git clone https://github.com/Filianin/dbt-meta.git
cd dbt-meta
# Install in development mode
pip install -e .
# Or install with dev dependencies
pip install -e ".[dev]"
# Verify installation
meta --version
Requirements
- Python 3.9+ (3.12+ recommended for best performance)
- dbt project with
manifest.json - Optional: jq for advanced JSON processing
🚀 Quick Start
Simple Mode (no configuration)
# Step 1: Compile your dbt project
dbt compile
# Step 2: Use dbt-meta immediately!
meta schema customers # → admirals-bi-dwh.analytics.customers
meta columns -j orders # → JSON array of columns
meta deps customers # → Dependencies list
meta search "customer" # → Find models
# Get comprehensive help with examples
meta --help
meta
Production Mode (with defer workflow)
To organize a dev environment, you need to have the current version
of the prod manifest.json, which will be regularly updated to the latest state.
For example, you can regularly compile your manifest and upload it to some cloud storage.
From there, you can download this file to your machine in any way you like.
If you generate documentation and upload it as a static website, then catalog.json is generated
as part of this process, which is recommended to be uploaded along with the manifest.
This file contains data about columns and data types that are missing from the manifest.
# One-time setup: Create config file
meta settings init
# Edit ~/.config/dbt-meta/config.toml:
prod_manifest_path = "~/dbt-state/manifest.json"
dev_schema = "personal_myname"
# Now works from any directory!
cd /tmp && meta schema customers # → Uses production manifest
# For dev models (after defer run):
defer run --select customers
meta schema --dev customers # → personal_myname.customers
meta columns -dj customers # → Dev columns with JSON output
Combined Flags (faster typing)
meta schema -dj customers # → Dev + JSON
meta parents -ajd model # → All ancestors + JSON + Dev
meta columns -jm ~/path.json m # → JSON + Custom manifest
📚 Commands Reference
Core Commands
| Command | Description | Example |
|---|---|---|
info <model> |
Model summary (name, schema, table, materialization, tags) | meta info -j customers |
schema <model> |
Full table name (database.schema.table) |
meta schema customers |
path <model> |
Relative file path to .sql file | meta path customers |
columns <model> |
Column names and types (--dev supported) |
meta columns -dj customers |
sql <model> |
Compiled SQL (or raw with --jinja) |
meta sql --jinja customers |
docs <model> |
Column names, types, and descriptions | meta docs customers |
deps <model> |
Dependencies by type (refs, sources, macros) | meta deps -j customers |
parents <model> |
Upstream dependencies (-a for all ancestors) |
meta parents -aj customers |
children <model> |
Downstream dependencies (-a for all descendants) |
meta children -a customers |
config <model> |
Full dbt config (29 fields: partition_by, cluster_by, etc.) | meta config -j customers |
Settings & Utilities
| Command | Description | Example |
|---|---|---|
settings init |
Create config file from template | meta settings init |
settings show |
Display current configuration | meta settings show -j |
settings validate |
Validate config file | meta settings validate |
settings path |
Show path to active config file | meta settings path |
list [pattern] |
List all models (optionally filter by pattern) | meta list staging |
search <query> |
Search models by name or description | meta search "customer" -j |
refresh |
Refresh manifest (runs dbt parse) |
meta refresh |
Global Flags
| Flag | Description |
|---|---|
-j, --json |
Output as JSON (AI-friendly structured data) |
-d, --dev |
Use dev manifest and schema |
-m, --manifest PATH |
Explicit path to manifest.json |
-a, --all |
Recursive mode (parents/children only) |
-h, --help |
Show help with examples |
-v, --version |
Show version |
Combined flags: -dj, -ajd, -jm PATH (order-independent)
💡 Common Use Cases
Querying BigQuery with Correct Table Names
# Get production table name (eliminates AI hallucinations)
TABLE=$(meta schema customers)
bq query "SELECT * FROM $TABLE LIMIT 10"
# → SELECT * FROM admirals-bi-dwh.analytics.dim_customers LIMIT 10
# Or with JSON output
TABLE=$(meta schema -j customers | jq -r '.full_name')
bq query "SELECT * FROM $TABLE LIMIT 10"
Finding All Columns for a Model
# Get column list for WHERE clauses
meta columns -j orders | jq -r '.[] | .name'
# → order_id, customer_id, order_date, status, amount
# Get column types for schema validation
meta columns -j orders | jq -r '.[] | "\(.name): \(.data_type)"'
# → order_id: INTEGER, customer_id: INTEGER, order_date: DATE, ...
Analyzing Dependencies
# Get all upstream models (for CI/CD impact analysis)
meta parents -aj customers | jq -r '.[] | .path'
# → staging/customers.sql, staging/orders.sql, staging/payments.sql
# Find downstream impact of model changes
meta children -a customers
# → Shows all models that depend on customers
Working with Dev Models
# Build dev model
defer run --select customers
# Query dev table (not production)
TABLE=$(meta schema --dev customers)
bq query "SELECT * FROM $TABLE LIMIT 10"
# → SELECT * FROM personal_USERNAME.customers LIMIT 10
Search and Discovery
# Find all staging models
meta list staging
# Search models by description
meta search "customer dimension" -j | jq -r '.[] | .name'
# Get file path for editing
meta path customers
# → models/marts/customers.sql
⚙️ Configuration
Priority: CLI flags > TOML config > Environment variables > Defaults
Simple Mode (Zero Configuration)
No configuration needed! Just run dbt compile and start using:
cd ~/my-dbt-project
dbt compile
meta schema customers # ✓ Works immediately with ./target/manifest.json
TOML Configuration (Recommended)
# Create config file with template
meta settings init
Edit ~/.config/dbt-meta/config.toml:
# Manifest paths
prod_manifest_path = "~/dbt-state/manifest.json"
dev_manifest_path = "./target/manifest.json"
# Dev environment
dev_schema = "personal_myname"
# Fallback behavior
fallback_dev_enabled = true # Try dev manifest if model not in prod
fallback_bigquery_enabled = true # Query BigQuery if model not in manifests
# Production naming (optional)
prod_table_name_strategy = "alias_or_name" # alias_or_name | name | alias
prod_schema_source = "config_or_model" # config_or_model | model | config
Config file locations (priority order):
./.dbt-meta.toml- Project-local config~/.config/dbt-meta/config.toml- User config (XDG standard)~/.dbt-meta.toml- Fallback location
Settings commands:
meta settings show # View current configuration
meta settings validate # Check config file for errors
meta settings path # Show active config file path
Environment Variables (Alternative)
All TOML settings can be set via environment variables with DBT_ prefix:
| TOML key | Environment variable |
|---|---|
prod_manifest_path |
DBT_PROD_MANIFEST_PATH |
dev_manifest_path |
DBT_DEV_MANIFEST_PATH |
dev_schema |
DBT_DEV_SCHEMA |
fallback_dev_enabled |
DBT_FALLBACK_TARGET |
fallback_bigquery_enabled |
DBT_FALLBACK_BIGQUERY |
🧪 Development
Running Tests
# Install with dev dependencies
pip install -e ".[dev]"
# Run all tests
pytest
# Run with coverage
pytest --cov=dbt_meta --cov-report=html
# Run specific test categories
pytest -m unit # Unit tests only
pytest -m integration # Integration tests only
pytest -m performance # Performance benchmarks
# Run tests in parallel
pytest -n auto
Code Quality
# Type checking
mypy src/dbt_meta
# Linting
ruff check src/dbt_meta
# Formatting
ruff format src/dbt_meta
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Development Guidelines
- Write tests for new features (maintain 90%+ coverage)
- Follow type hints (mypy strict mode)
- Use ruff for formatting and linting
- Add docstrings for public APIs
- Update README with new features
📄 License
Copyright © 2025 Pavel Filianin
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Built with ❤️ for the dbt community
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dbt_meta-0.1.1.tar.gz.
File metadata
- Download URL: dbt_meta-0.1.1.tar.gz
- Upload date:
- Size: 119.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0c8b66cece23e27a90e11f499c68654efab414a5812941ef64f9951013f07de
|
|
| MD5 |
437b81a9a066ef0ea710cc75aad95e60
|
|
| BLAKE2b-256 |
2abe139bfd15033ee28ae39fb9e54f6e25be61994c278eeab8725e642c0f7242
|
File details
Details for the file dbt_meta-0.1.1-py3-none-any.whl.
File metadata
- Download URL: dbt_meta-0.1.1-py3-none-any.whl
- Upload date:
- Size: 80.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f9375301a59f2c007aa5dd5936bafa81d48dfcb29ca9102c35918a2c5d7136c
|
|
| MD5 |
e1009ab5d9e83c94c42ce2a5412f786a
|
|
| BLAKE2b-256 |
2e9baa149505f2b5a3534820cc5d1dedc00989069707382054a9e99beee12549
|