getYesOrNo
Use this tool to receive a clear 'yes' or 'no' response to any question. Ideal for quick decision-making by submitting queries in a structured format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
question | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"question": {
"type": "string"
}
},
"required": [
"question"
],
"type": "object"
}