dbt-list-models
List dbt models from manifest.json with filters for package, tag, materialization, schema, or name substring search.
Instructions
List dbt models from manifest.json with filters (package, tag, materialized, schema, name search)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Filter by tag (a model is included if it has this tag) | |
| limit | No | Max rows to return | |
| schema | No | Filter by destination schema/dataset | |
| search | No | Substring match against model name (case-insensitive) | |
| package | No | Filter by dbt package name (e.g. project name) | |
| materialized | No | Filter by materialization (table | view | incremental | ...) | |
| extractFields | No | Comma-separated dotted paths to project from response (e.g. 'id,name,owner.name,columns.*.name'). Use `*` as wildcard for arrays/objects. Wrap field names with dots in backticks. Reduces response tokens dramatically on large entities. |