search_files
Recursively search files and directories by pattern from a specified path using the Desktop Commander MCP server. Quickly locate data within allowed subdirectories for efficient file management.
Instructions
Recursively search for files and directories matching a pattern. Searches through all subdirectories from the starting path. Only searches within allowed directories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ||
pattern | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"pattern": {
"type": "string"
}
},
"required": [
"path",
"pattern"
],
"type": "object"
}