todoist_search_tasks
Search for specific tasks in Todoist by content or name using a query, optionally filtered by project and limited by result count, when task IDs are unknown.
Instructions
Search for tasks by content/name (fallback for when ID is not known)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results (default: 10) (optional) | |
projectId | No | Limit search to specific project (optional) | |
query | Yes | Search query to find tasks by content |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results (default: 10) (optional)",
"type": "number"
},
"projectId": {
"description": "Limit search to specific project (optional)",
"type": "string"
},
"query": {
"description": "Search query to find tasks by content",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}