hooks_start_watching
Initiate file system monitoring to automatically trigger events based on specified file patterns, enhancing context-aware project automation in CastPlan MCP.
Instructions
Start file system watching for automatic event triggering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
patterns | No | File patterns to watch (optional, uses defaults if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"patterns": {
"description": "File patterns to watch (optional, uses defaults if not provided)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [],
"type": "object"
}