search_todos
Locate specific tasks in the Things app by searching titles and notes using a query term, streamlining task retrieval and organization.
Instructions
Search todos by title or notes
Args: query: Search term to look for in todo titles and notes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}