removedInput schema / additionalProperties
Removed value: -false
removedInput schema / description
Removed value: -"Input for listing scouts with optional limit and filtering."
addedInput schema / properties / cursor
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Cursor"
+}
addedInput schema / properties / limit / anyOf
Added value: +[
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / limit / description
Removed value: -"Maximum number of scouts to return (1-100). Default: 10"
removedInput schema / properties / limit / maximum
Removed value: -100
removedInput schema / properties / limit / minimum
Removed value: -1
removedInput schema / properties / limit / type
Removed value: -"integer"
addedInput schema / properties / status / anyOf
Added value: +[
+ {
+ "enum": [
+ "active",
+ "paused",
+ "done"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / status / description
Removed value: -"Filter by status: 'active', 'paused', or 'done'"
removedInput schema / properties / status / enum
Removed value: -[
- "active",
- "paused",
- "done"
-]
removedInput schema / properties / status / type
Removed value: -"string"
changedInput schema / title
Previous value: -"ListScoutsInput"New value: +"list_scoutsArguments"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "result": {
+ "title": "Result",
+ "type": "string"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "title": "list_scoutsOutput",
+ "type": "object"
+}