TickTick MCP Server provides integration with the TickTick task management API, enabling AI assistants to create, read, update, and delete tasks and projects. The implementation handles OAuth2 authentication flow with automatic token refresh, securely storing credentials in environment variables. Built by Jaesung Park, it features a comprehensive client that abstracts away API complexities and includes a CLI utility for easy authentication setup. This server is ideal for productivity workflows that need to programmatically manage tasks, track projects, or automate task creation based on AI-generated content.
暂无评论. 成为第一个评论的人!
登录以参与讨论
List all your TickTick projects. Parameters: None
Get details about a specific project. Parameters: project_id
List all tasks in a project. Parameters: project_id
Get details about a specific task. Parameters: project_id, task_id
Create a new task. Parameters: title, project_id, content (optional), start_date (optional), due_date (optional), priority (optional)
Update an existing task. Parameters: task_id, project_id, title (optional), content (optional), start_date (optional), due_date (optional), priority (optional)
Mark a task as complete. Parameters: project_id, task_id
Delete a task. Parameters: project_id, task_id
Create a new project. Parameters: name, color (optional), view_mode (optional)
Delete a project. Parameters: project_id
Get all tasks from all projects. Parameters: None
Get tasks filtered by priority level. Parameters: priority_id (0: None, 1: Low, 3: Medium, 5: High)
Search tasks by title, content, or subtasks. Parameters: search_term
Get all tasks due today. Parameters: None
Get all tasks due tomorrow. Parameters: None
Get tasks due in exactly X days. Parameters: days (0 = today, 1 = tomorrow, etc.)
Get tasks due within the next 7 days. Parameters: None
Get all overdue tasks. Parameters: None
Get 'engaged' tasks (high priority or overdue). Parameters: None
Get 'next' tasks (medium priority or due tomorrow). Parameters: None
Create multiple tasks at once. Parameters: tasks (list of task dictionaries)