ticktick_search_tasks
Search tasks in TickTick MCP Server using a text query to retrieve relevant results, with an option to set a maximum limit for the number of tasks returned.
Instructions
Advanced search for tasks with text query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results | |
query | Yes | Search query text |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Maximum number of results",
"type": "number"
},
"query": {
"description": "Search query text",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}