show_item
Display a specific item or filtered list in the Things app using ID or predefined categories like inbox, today, or logbook, with optional query and tag filters.
Instructions
Show a specific item or list in Things
Args: id: ID of item to show, or one of: inbox, today, upcoming, anytime, someday, logbook query: Optional query to filter by filter_tags: Optional tags to filter by
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter_tags | No | ||
id | Yes | ||
query | No |
Input Schema (JSON Schema)
{
"properties": {
"filter_tags": {
"default": null,
"items": {
"type": "string"
},
"title": "Filter Tags",
"type": "array"
},
"id": {
"title": "Id",
"type": "string"
},
"query": {
"default": null,
"title": "Query",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}