inputSchema property
JSON Schema for the tool's input parameters.
Implementation
@override
Map<String, dynamic> get inputSchema => {
'type': 'object',
'properties': {
'pattern': {
'type': 'string',
'description': 'Glob pattern to match (e.g. "**/*.dart")',
},
'path': {
'type': 'string',
'description': 'Directory to search in (default: current directory)',
},
},
'required': ['pattern'],
};