Search Tasks
Find tasks by text within a workspace and return ranked summary matches.
Instructions
Call search-tasks when the user wants to find tasks by title or indexed content.
search-tasks({
"query": "<query>",
"workspaceId": "<workspaceId>",
"categories": ["initiative", "ongoing", "bug", "review-bug", "review-item"],
"limit": 10
})Notes:
queryis required. It matches titles and indexed content.workspaceIdis optional. If omitted, the MCP default workspace is used.categoriesis optional. Defaults toinitiative,ongoing,bug,review-bug, andreview-item.- Add
day-tasktocategorieswhen the user wants personal day-scoped follow-ups included. limitis optional and defaults to10.- Results are ranked summary hits, not full detail views.
- If a result looks relevant, call
get-task-detailswith itstaskId.