inputSchema property
JSON Schema for the tool's input parameters.
Implementation
@override
Map<String, dynamic> get inputSchema => {
'type': 'object',
'properties': {
'reason': {
'type': 'string',
'description': 'Reason for entering plan mode',
},
},
'required': ['reason'],
'additionalProperties': false,
};