inputSchema property
JSON Schema for the tool's input parameters.
Implementation
@override
Map<String, dynamic> get inputSchema => {
'type': 'object',
'properties': {
'command': {
'type': 'string',
'description': 'The PowerShell command to execute',
},
'timeout_ms': {
'type': 'integer',
'description': 'Timeout in milliseconds (default: 120000)',
},
},
'required': ['command'],
};