show
Display specific tasks or projects from Things 3 using ID-based lookup, text queries, or category filters to retrieve structured data for analysis and management.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| query | No | ||
| filter | No |
Implementation Reference
- src/index.ts:1959-1969 (handler)Implementation of the "show" tool, which uses `openThingsURL` to open items in Things.
"show", { id: z.string().optional(), query: z.string().optional(), filter: z.array(z.string()).optional(), }, async (params) => { const url = await openThingsURL("show", buildURLParams(params)); return buildTextResponse("Opened item in Things", { url }); } );