inputSchema property

  1. @override
Map<String, dynamic> get inputSchema
override

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'],
};