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.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
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