search_assets
Search and list assets by name prefix or group to discover available assets in your Dagster instance.
Instructions
Search and list assets by name prefix or group. Use this to discover assets.
Returns per asset: assetKey, groupName, description, isPartitioned, op name.
prefix: case-insensitive substring match on any part of the asset key (e.g. 'raw_' finds 'raw_orders', 'raw_users')
group: exact match on groupName (case-insensitive, e.g. 'analytics')
Both filters can be combined.
If neither is passed, returns ALL assets.
When to use: to discover available assets before calling get_asset_details or get_asset_health. Use prefix for fuzzy search, group for scoped listing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | ||
| group | No | ||
| prefix | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |