Slack
SLACKBOT_SEARCH_ALL
Tool to search all messages and files. Use when you need unified content search across channels and files in one call.
Remote slackbot
Other tools also called SLACKBOT_SEARCH_ALL?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"page": {
"type": "integer",
"title": "Page",
"default": null,
"examples": [
1,
2,
3
],
"nullable": true,
"description": "Page number of results to return; default is 1."
},
"sort": {
"type": "string",
"title": "Sort",
"default": null,
"examples": [
"score",
"timestamp"
],
"nullable": true,
"description": "Sort by `score` (relevance) or `timestamp` (chronological)."
},
"count": {
"type": "integer",
"title": "Count",
"default": null,
"examples": [
20,
50,
100
],
"nullable": true,
"description": "Number of results per page; default is 20; max is 100."
},
"query": {
"type": "string",
"title": "Query",
"examples": [
"error report",
"in:#channel from:@user has:file"
],
"description": "Search query supporting Slack search modifiers/booleans."
},
"team_id": {
"type": "string",
"title": "Team Id",
"default": null,
"nullable": true,
"description": "Encoded team ID to search in; required when using an org-level token."
},
"sort_dir": {
"type": "string",
"title": "Sort Dir",
"default": null,
"examples": [
"asc",
"desc"
],
"nullable": true,
"description": "Sort direction: `asc` or `desc`."
},
"highlight": {
"type": "boolean",
"title": "Highlight",
"default": null,
"examples": [
true,
false
],
"nullable": true,
"description": "If true, search terms are wrapped with markers for client-side highlighting."
}
}
}