addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / label / description
Added value: +"Optional label name to filter by. If None, returns all tasks."
removedOutput schema / $defs
Removed value: -{
- "ErrorDetails": {
- "properties": {
- "error_type": {
- "type": "string"
- },
- "message": {
- "type": "string"
- },
- "retry_suggested": {
- "default": false,
- "type": "boolean"
- },
- "user_message": {
- "type": "string"
- }
- },
- "required": [
- "error_type",
- "message",
- "user_message"
- ],
- "type": "object"
- },
- "ResponseDebug": {
- "properties": {
- "api_calls_made": {
- "default": 1,
- "type": "integer"
- },
- "api_endpoint": {
- "type": "string"
- },
- "cache_hit": {
- "default": false,
- "type": "boolean"
- },
- "error": {
- "anyOf": [
- {
- "$ref": "#/$defs/ErrorDetails"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "response_time_ms": {
- "type": "integer"
- },
- "warnings": {
- "anyOf": [
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- }
- },
- "required": [
- "api_endpoint",
- "response_time_ms"
- ],
- "type": "object"
- },
- "ResponseMetadata": {
- "properties": {
- "count": {
- "type": "integer"
- },
- "data_freshness": {
- "default": "real_time",
- "type": "string"
- },
- "end_date": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "filters_applied": {
- "anyOf": [
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "source": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "start_date": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- }
- },
- "required": [
- "count"
- ],
- "type": "object"
- },
- "ResponseSummary": {
- "properties": {
- "action_completed": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "status": {
- "type": "string"
- },
- "text": {
- "type": "string"
- }
- },
- "required": [
- "text",
- "status"
- ],
- "type": "object"
- }
-}
addedOutput schema / description
Added value: +"Standard response structure for all tools"
removedOutput schema / properties / data / title
Removed value: -"Data"
changedOutput schema / properties / debug / anyOf
Previous value: -[
- {
- "$ref": "#/$defs/ResponseDebug"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "description": "Technical execution details",
+ "properties": {
+ "api_calls_made": {
+ "default": 1,
+ "type": "integer"
+ },
+ "api_endpoint": {
+ "type": "string"
+ },
+ "cache_hit": {
+ "default": false,
+ "type": "boolean"
+ },
+ "error": {
+ "anyOf": [
+ {
+ "description": "Structured error information",
+ "properties": {
+ "error_type": {
+ "type": "string"
+ },
+ "message": {
+ "type": "string"
+ },
+ "retry_suggested": {
+ "default": false,
+ "type": "boolean"
+ },
+ "user_message": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "error_type",
+ "message",
+ "user_message"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "response_time_ms": {
+ "type": "integer"
+ },
+ "warnings": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ }
+ },
+ "required": [
+ "api_endpoint",
+ "response_time_ms"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / metadata / $ref
Removed value: -"#/$defs/ResponseMetadata"
addedOutput schema / properties / metadata / description
Added value: +"Metadata about the data itself"
addedOutput schema / properties / metadata / properties
Added value: +{
+ "count": {
+ "type": "integer"
+ },
+ "data_freshness": {
+ "default": "real_time",
+ "type": "string"
+ },
+ "end_date": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "filters_applied": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "source": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "start_date": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ }
+}
addedOutput schema / properties / metadata / required
Added value: +[
+ "count"
+]
addedOutput schema / properties / metadata / type
Added value: +"object"
removedOutput schema / properties / summary / $ref
Removed value: -"#/$defs/ResponseSummary"
addedOutput schema / properties / summary / description
Added value: +"Human-readable insights"
addedOutput schema / properties / summary / properties
Added value: +{
+ "action_completed": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "status": {
+ "type": "string"
+ },
+ "text": {
+ "type": "string"
+ }
+}
addedOutput schema / properties / summary / required
Added value: +[
+ "text",
+ "status"
+]
addedOutput schema / properties / summary / type
Added value: +"object"