addedInput schema / additionalProperties
Added value: +false
removedInput schema / properties / identifier / title
Removed value: -"Identifier"
removedInput schema / title
Removed value: -"delete_document_versionArguments"
removedOutput schema / $defs
Removed value: -{
- "ToolError": {
- "description": "Represents an error response from a tool execution.\n\nThis class helps the LLM understand error messages and provides suggestions\nfor potential resolutions.",
- "properties": {
- "isError": {
- "const": true,
- "default": true,
- "description": "Indicates that an error occurred during tool execution if value is True",
- "title": "Iserror",
- "type": "boolean"
- },
- "message": {
- "description": "Detailed error message",
- "title": "Message",
- "type": "string"
- },
- "suggestions": {
- "description": "List of suggestions for resolving the error",
- "items": {
- "type": "string"
- },
- "title": "Suggestions",
- "type": "array"
- }
- },
- "required": [
- "message"
- ],
- "title": "ToolError",
- "type": "object"
- }
-}
changedOutput schema / properties / result / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "$ref": "#/$defs/ToolError"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "description": "Represents an error response from a tool execution.\n\nThis class helps the LLM understand error messages and provides suggestions\nfor potential resolutions.",
+ "properties": {
+ "isError": {
+ "const": true,
+ "default": true,
+ "description": "Indicates that an error occurred during tool execution if value is True",
+ "type": "boolean"
+ },
+ "message": {
+ "description": "Detailed error message",
+ "type": "string"
+ },
+ "suggestions": {
+ "description": "List of suggestions for resolving the error",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "message"
+ ],
+ "type": "object"
+ }
+]
removedOutput schema / properties / result / title
Removed value: -"Result"
removedOutput schema / title
Removed value: -"delete_document_versionOutput"
addedOutput schema / x-fastmcp-wrap-result
Added value: +true