addedInput schema / additionalProperties
Added value: +false
removedInput schema / properties / class_symbolic_name / title
Removed value: -"Class Symbolic Name"
removedInput schema / properties / keywords / title
Removed value: -"Keywords"
removedInput schema / title
Removed value: -"lookup_documents_by_nameArguments"
removedOutput schema / $defs
Removed value: -{
- "DocumentMatch": {
- "description": "Information about a document that matches a search.",
- "properties": {
- "class_name": {
- "default": "Document",
- "description": "Class identifier for the document",
- "title": "Class Name",
- "type": "string"
- },
- "id": {
- "description": "The id of the document",
- "title": "Id",
- "type": "string"
- },
- "name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "The name of the document",
- "title": "Name"
- },
- "score": {
- "description": "The match score, higher values indicate better matches",
- "title": "Score",
- "type": "number"
- }
- },
- "required": [
- "id",
- "score"
- ],
- "title": "DocumentMatch",
- "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/DocumentMatch"
- },
- "type": "array"
- },
- {
- "$ref": "#/$defs/ToolError"
- }
-]New value: +[
+ {
+ "items": {
+ "description": "Information about a document that matches a search.",
+ "properties": {
+ "class_name": {
+ "default": "Document",
+ "description": "Class identifier for the document",
+ "type": "string"
+ },
+ "id": {
+ "description": "The id of the document",
+ "type": "string"
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The name of the document"
+ },
+ "score": {
+ "description": "The match score, higher values indicate better matches",
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "score"
+ ],
+ "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: -"lookup_documents_by_nameOutput"
addedOutput schema / x-fastmcp-wrap-result
Added value: +true