TickTick
Summary
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.
Available Actions(10)
get_projects
List all your TickTick projects. Parameters: None
get_project
Get details about a specific project. Parameters: project_id
get_project_tasks
List all tasks in a project. Parameters: project_id
get_task
Get details about a specific task. Parameters: project_id, task_id
create_task
Create a new task. Parameters: title, project_id, content (optional), start_date (optional), due_date (optional), priority (optional)
update_task
Update an existing task. Parameters: task_id, project_id, title (optional), content (optional), start_date (optional), due_date (optional), priority (optional)
complete_task
Mark a task as complete. Parameters: project_id, task_id
delete_task
Delete a task. Parameters: project_id, task_id
create_project
Create a new project. Parameters: name, color (optional), view_mode (optional)
delete_project
Delete a project. Parameters: project_id
社区评论
暂无评论. 成为第一个评论的人!
登录以参与讨论