addedInput schema / properties / base_date / title
Added value: +"Base Date"
changedInput schema / properties / days / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "integer"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ },
+ {
+ "type": "boolean"
+ }
+]
changedInput schema / properties / days / description
Previous value: -"Liczba dni do dodania (+) lub odjęcia (-). Np. days=14 = za 14 dni, days=-14 = 14 dni temu. Domyślnie 0."New value: +"Liczba dni do dodania (+) lub odjęcia (-). Np. days=14 = za 14 dni, days=-14 = 14 dni temu. Domyślnie 0. Wartości logiczne (true/false) są niedozwolone."
addedInput schema / properties / days / title
Added value: +"Days"
changedInput schema / properties / months / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "integer"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ },
+ {
+ "type": "boolean"
+ }
+]
changedInput schema / properties / months / description
Previous value: -"Liczba miesięcy do dodania (+) lub odjęcia (-). Np. months=3 = za 3 miesiące, months=-6 = 6 miesięcy temu. Domyślnie 0."New value: +"Liczba miesięcy do dodania (+) lub odjęcia (-). Np. months=3 = za 3 miesiące, months=-6 = 6 miesięcy temu. Domyślnie 0. Wartości logiczne (true/false) są niedozwolone."
addedInput schema / properties / months / title
Added value: +"Months"
changedInput schema / properties / years / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "integer"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ },
+ {
+ "type": "boolean"
+ }
+]
changedInput schema / properties / years / description
Previous value: -"Liczba lat do dodania (+) lub odjęcia (-). Np. years=1 = za rok, years=-5 = 5 lat temu. Domyślnie 0."New value: +"Liczba lat do dodania (+) lub odjęcia (-). Np. years=1 = za rok, years=-5 = 5 lat temu. Domyślnie 0. Wartości logiczne (true/false) są niedozwolone."
addedInput schema / properties / years / title
Added value: +"Years"
addedInput schema / title
Added value: +"calculate_legal_dateArguments"
addedOutput schema / $defs
Added value: +{
+ "DateOutput": {
+ "description": "Output for date calculation.",
+ "properties": {
+ "base_date": {
+ "title": "Base Date",
+ "type": "string"
+ },
+ "calculated_date": {
+ "title": "Calculated Date",
+ "type": "string"
+ },
+ "days_offset": {
+ "title": "Days Offset",
+ "type": "integer"
+ },
+ "description": {
+ "title": "Description",
+ "type": "string"
+ },
+ "months_offset": {
+ "title": "Months Offset",
+ "type": "integer"
+ },
+ "years_offset": {
+ "title": "Years Offset",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "base_date",
+ "calculated_date",
+ "days_offset",
+ "months_offset",
+ "years_offset",
+ "description"
+ ],
+ "title": "DateOutput",
+ "type": "object"
+ },
+ "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"
+ }
+}
addedOutput schema / properties / data
Added value: +{
+ "$ref": "#/$defs/DateOutput",
+ "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[DateOutput]"
removedOutput schema / x-fastmcp-wrap-result
Removed value: -true