Task Search¶
Search tasks by description text via the SQLite store. Bridge-independent — works even when Obsidian isn't running. Returns task records (full task_metadata rows) ordered most-recently-updated first. For full-text search over task NOTE bodies (the [[uuid|📓]]-linked detail files), use context_search(source='task_note') instead — that's hybrid retrieval over note content; this is exact-text search over the line description.
MCP name: task_search
Category: tasks
Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
include_archived |
bool |
No | Include archived tasks (default False) |
include_done |
bool |
No | Include completed tasks (default True) |
limit |
int |
No | Max results (default 50) |
query |
str |
Yes | Substring to search for in task description text. Empty string returns nothing. |