ticktick_get_tasks_by_tag
Filter and retrieve tasks by a specific tag using the TickTick MCP Server API. Specify the tag name and optional limit to manage task organization efficiently.
Instructions
Get all tasks with a specific tag
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of tasks to return | |
| tag_name | Yes | Name of the tag to filter by |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of tasks to return",
"type": "number"
},
"tag_name": {
"description": "Name of the tag to filter by",
"type": "string"
}
},
"required": [
"tag_name"
],
"type": "object"
}