glob
Find files matching a glob pattern, with recursive search through subdirectories, hidden file filtering, and result limits for controlled file discovery.
Instructions
Find files matching a glob pattern.
Uses pathlib's glob matching. Supports recursive patterns (**), hidden file filtering, and result limiting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes | Request model for glob tool. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The directory that was searched. | |
| total | Yes | Total number of matches found. | |
| matches | Yes | List of matching paths relative to root. | |
| pattern | Yes | The glob pattern used. | |
| truncated | Yes | Whether results were truncated due to max_results. |