global_search
Search across all accessible spaces with options to filter by object type, sort results, and control pagination for efficient content discovery.
Instructions
Executes a search across all spaces the user has access to, with options for filtering by type and sorting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search term | |
| types | No | Optional list of object type keys or IDs to filter by | |
| sort_property | No | Property to sort by | last_modified_date |
| sort_direction | No | Sort direction | desc |
| offset | No | Pagination offset | |
| limit | No | Number of results per page (1-1000) | |
| include_text | No | Set to true to include full formatted text content from blocks. USE WITH CAUTION: This can return a large amount of data. |
Input Schema (JSON Schema)
{
"properties": {
"include_text": {
"default": false,
"description": "Set to true to include full formatted text content from blocks. USE WITH CAUTION: This can return a large amount of data.",
"type": "boolean"
},
"limit": {
"default": 100,
"description": "Number of results per page (1-1000)",
"type": "number"
},
"offset": {
"default": 0,
"description": "Pagination offset",
"type": "number"
},
"query": {
"description": "Search term",
"type": "string"
},
"sort_direction": {
"default": "desc",
"description": "Sort direction",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"sort_property": {
"default": "last_modified_date",
"description": "Property to sort by",
"enum": [
"created_date",
"last_modified_date",
"last_opened_date",
"name"
],
"type": "string"
},
"types": {
"description": "Optional list of object type keys or IDs to filter by",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query"
],
"type": "object"
}