list_directory
Browse and filter directory contents with customizable depth and file pattern matching to organize and access stored knowledge files efficiently.
Instructions
List directory contents with filtering and depth control.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | ||
dir_name | No | / | |
file_name_glob | No | ||
project | No |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"default": 1,
"title": "Depth",
"type": "integer"
},
"dir_name": {
"default": "/",
"title": "Dir Name",
"type": "string"
},
"file_name_glob": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "File Name Glob"
},
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project"
}
},
"type": "object"
}