show-item
Display a specific item from Things 3 using its unique identifier, with optional search queries and tag filtering for precise retrieval.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| query | No | ||
| filter_tags | No |
Implementation Reference
- src/index.ts:1972-1985 (handler)Implementation of the "show-item" tool which opens a specific item in Things.app by ID.
"show-item", { id: z.string(), query: z.string().optional(), filter_tags: z.array(z.string()).optional(), }, async ({ id, query, filter_tags }) => { const url = await openThingsURL( "show", buildURLParams({ id, query, filter: filter_tags }) ); return buildTextResponse("Opened item in Things", { id, url }); } );