addedInput schema / additionalProperties
Added value: +false
removedInput schema / properties / folder_id_or_path / title
Removed value: -"Folder Id Or Path"
removedInput schema / title
Removed value: -"get_folder_documentsArguments"
removedOutput schema / $defs
Removed value: -{
- "Document": {
- "description": "Document class for the MCP server.",
- "properties": {
- "className": {
- "default": "Document",
- "description": "Class identifier for the document",
- "title": "Classname",
- "type": "string"
- },
- "contentSize": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Size of the document content",
- "title": "Contentsize"
- },
- "creator": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "The creator of the document",
- "title": "Creator"
- },
- "dateCreated": {
- "anyOf": [
- {
- "format": "date-time",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Date when document was created",
- "title": "Datecreated"
- },
- "dateLastModified": {
- "anyOf": [
- {
- "format": "date-time",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Date when document was last modified",
- "title": "Datelastmodified"
- },
- "id": {
- "description": "The id of the document",
- "title": "Id",
- "type": "string"
- },
- "isVersioningEnabled": {
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Whether versioning is enabled",
- "title": "Isversioningenabled"
- },
- "lastModifier": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "The last modifier of the document",
- "title": "Lastmodifier"
- },
- "majorVersionNumber": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Major version number",
- "title": "Majorversionnumber"
- },
- "mimeType": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "MIME type of the document",
- "title": "Mimetype"
- },
- "minorVersionNumber": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Minor version number",
- "title": "Minorversionnumber"
- },
- "name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "The name of the document",
- "title": "Name"
- },
- "owner": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "The owner of the document",
- "title": "Owner"
- },
- "properties": {
- "anyOf": [
- {
- "items": {
- "additionalProperties": true,
- "type": "object"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Document properties",
- "title": "Properties"
- }
- },
- "required": [
- "id"
- ],
- "title": "Document",
- "type": "object"
- },
- "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: -[
- {
- "items": {
- "$ref": "#/$defs/Document"
- },
- "type": "array"
- },
- {
- "$ref": "#/$defs/ToolError"
- }
-]New value: +[
+ {
+ "items": {
+ "description": "Document class for the MCP server.",
+ "properties": {
+ "className": {
+ "default": "Document",
+ "description": "Class identifier for the document",
+ "type": "string"
+ },
+ "contentSize": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Size of the document content"
+ },
+ "creator": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The creator of the document"
+ },
+ "dateCreated": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Date when document was created"
+ },
+ "dateLastModified": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Date when document was last modified"
+ },
+ "id": {
+ "description": "The id of the document",
+ "type": "string"
+ },
+ "isVersioningEnabled": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Whether versioning is enabled"
+ },
+ "lastModifier": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The last modifier of the document"
+ },
+ "majorVersionNumber": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Major version number"
+ },
+ "mimeType": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "MIME type of the document"
+ },
+ "minorVersionNumber": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Minor version number"
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The name of the document"
+ },
+ "owner": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The owner of the document"
+ },
+ "properties": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Document properties"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "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: -"get_folder_documentsOutput"
addedOutput schema / x-fastmcp-wrap-result
Added value: +true