addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / max_spaces
Added value: +{
+ "default": 10,
+ "description": "Maximum number of spaces to search when space_id is not provided (default 10).",
+ "type": "integer"
+}
addedInput schema / properties / page_size / description
Added value: +"Maximum number of messages to return per space."
removedInput schema / properties / page_size / title
Removed value: -"Page Size"
addedInput schema / properties / query / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / query / default
Added value: +null
addedInput schema / properties / query / description
Added value: +"Optional text to search for. If omitted, only time_filter is applied."
removedInput schema / properties / query / title
Removed value: -"Query"
removedInput schema / properties / query / type
Removed value: -"string"
removedInput schema / properties / service
Removed value: -{
- "title": "service",
- "type": "string"
-}
addedInput schema / properties / space_id / description
Added value: +"Optional space to restrict the search to."
removedInput schema / properties / space_id / title
Removed value: -"Space Id"
addedInput schema / properties / time_filter
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional filter using Chat API createTime syntax.\n Examples:\n 'createTime > \"2026-03-18T00:00:00-03:00\"'\n 'createTime > \"2026-03-18T00:00:00-03:00\" AND createTime < \"2026-03-19T00:00:00-03:00\"'"
+}
removedInput schema / properties / user_google_email / title
Removed value: -"User Google Email"
changedInput schema / required
Previous value: -[
- "service",
- "user_google_email",
- "query"
-]New value: +[
+ "user_google_email"
+]
removedInput schema / title
Removed value: -"search_messagesArguments"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "result": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "type": "object",
+ "x-fastmcp-wrap-result": true
+}