search
Search through Things 3 data to find specific tasks and projects using SQLite queries, enabling AI agents to locate and manage information within the task management system.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | No |
Implementation Reference
- src/index.ts:1988-1996 (handler)Handler for the 'search' tool which triggers a Things search via its URL scheme.
"search", { query: z.string().optional(), }, async ({ query }) => { const url = await openThingsURL("search", buildURLParams({ query })); return buildTextResponse("Opened Things search", { query: query ?? "", url }); } );