changedInput schema / properties / context_chars / description
Previous value: -"Liczba znaków kontekstu przed i po każdym trafieniu. Domyślnie 500."New value: +"Liczba znaków kontekstu przed i po każdym trafieniu. Domyślnie 500. Maksymalnie 2000 — wartości większe są przycinane do 2000, a odpowiedź zawiera wtedy wskazówkę o przycięciu. Wywołanie nie kończy się błędem."
addedInput schema / properties / context_chars / title
Added value: +"Context Chars"
addedInput schema / properties / eli / title
Added value: +"Eli"
addedInput schema / properties / limit
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ }
+ ],
+ "default": 20,
+ "description": "Maksymalna liczba trafień na stronie. Domyślnie 20, maksimum 100.",
+ "title": "Limit"
+}
addedInput schema / properties / offset
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ }
+ ],
+ "default": 0,
+ "description": "Nieujemne przesunięcie początku strony. Domyślnie 0.",
+ "title": "Offset"
+}
addedInput schema / properties / query / title
Added value: +"Query"
addedInput schema / title
Added value: +"search_in_actArguments"
addedOutput schema / $defs
Added value: +{
+ "Hint": {
+ "description": "Hint for next actions or related tools.",
+ "properties": {
+ "message": {
+ "description": "Hint message",
+ "title": "Message",
+ "type": "string"
+ },
+ "parameters": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Suggested parameters",
+ "title": "Parameters"
+ },
+ "tool": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Related tool name",
+ "title": "Tool"
+ }
+ },
+ "required": [
+ "message"
+ ],
+ "title": "Hint",
+ "type": "object"
+ },
+ "PageInfo": {
+ "description": "Metadata describing one bounded response page.",
+ "properties": {
+ "limit": {
+ "minimum": 0,
+ "title": "Limit",
+ "type": "integer"
+ },
+ "next_offset": {
+ "anyOf": [
+ {
+ "minimum": 0,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Next Offset"
+ },
+ "offset": {
+ "minimum": 0,
+ "title": "Offset",
+ "type": "integer"
+ },
+ "returned_count": {
+ "minimum": 0,
+ "title": "Returned Count",
+ "type": "integer"
+ },
+ "total_count": {
+ "minimum": 0,
+ "title": "Total Count",
+ "type": "integer"
+ },
+ "unit": {
+ "$ref": "#/$defs/PageUnit"
+ },
+ "was_truncated": {
+ "title": "Was Truncated",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "limit",
+ "offset",
+ "returned_count",
+ "total_count",
+ "was_truncated",
+ "unit"
+ ],
+ "title": "PageInfo",
+ "type": "object"
+ },
+ "PageUnit": {
+ "description": "Unit represented by a page.",
+ "enum": [
+ "items",
+ "characters"
+ ],
+ "title": "PageUnit",
+ "type": "string"
+ },
+ "SearchInActOutput": {
+ "description": "Output for search within act.",
+ "properties": {
+ "context_chars_applied": {
+ "default": 500,
+ "title": "Context Chars Applied",
+ "type": "integer"
+ },
+ "context_chars_requested": {
+ "default": 500,
+ "title": "Context Chars Requested",
+ "type": "integer"
+ },
+ "eli": {
+ "title": "Eli",
+ "type": "string"
+ },
+ "matches": {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "title": "Matches",
+ "type": "array"
+ },
+ "page_info": {
+ "$ref": "#/$defs/PageInfo"
+ },
+ "query": {
+ "title": "Query",
+ "type": "string"
+ },
+ "total_matches": {
+ "title": "Total Matches",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "eli",
+ "query",
+ "matches",
+ "total_matches",
+ "page_info"
+ ],
+ "title": "SearchInActOutput",
+ "type": "object"
+ }
+}
addedOutput schema / properties / data
Added value: +{
+ "$ref": "#/$defs/SearchInActOutput",
+ "description": "The actual response data"
+}
addedOutput schema / properties / hints
Added value: +{
+ "description": "Suggested next steps",
+ "items": {
+ "$ref": "#/$defs/Hint"
+ },
+ "title": "Hints",
+ "type": "array"
+}
addedOutput schema / properties / metadata
Added value: +{
+ "additionalProperties": true,
+ "description": "Additional metadata",
+ "title": "Metadata",
+ "type": "object"
+}
removedOutput schema / properties / result
Removed value: -{
- "type": "string"
-}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "data"
+]
addedOutput schema / title
Added value: +"EnrichedResponse[SearchInActOutput]"
removedOutput schema / x-fastmcp-wrap-result
Removed value: -true