TickTick MCP Server
Provides tools for task management (create, list, update, complete, delete tasks), subtask management, project listing, GTD workflows (engaged, next, weekly review, someday tasks), and optional V2 API features (tags, completed tasks, inbox, search) via TickTick's API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TickTick MCP Serverlist my high priority tasks due today"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TickTick MCP Server (Python)
A robust MCP server for TickTick based on the ticktick-py library.
Features
Full task management: Create, list, update, complete, and delete tasks
Advanced filtering: Filter tasks by priority, due date, and status
Reminders: Set multiple reminders with RFC 5545 trigger format
Subtasks: Create and complete checklist items within tasks
Date/time support: Separate start and due dates with optional times
Timezone support: Specify timezone for time-sensitive tasks
Recurrence: Full RRULE support for recurring tasks
Smart matching: Fuzzy, partial, or exact title matching
Direct ID lookup: Skip title search when task ID is known
Retry logic: Automatic retry on transient failures
OAuth2 authentication via
ticktick-pyV2 API features (optional): Completed tasks, Inbox, tags, and search
Related MCP server: TickTick MCP Server
Available MCP Tools
Task Management
Tool | Description |
| Create a new task with optional reminders, subtasks, dates, timezone |
| List tasks with optional filters (project, priority, due, status) |
| Retrieve a single task by ID |
| Update task properties (title, dates, reminders, subtasks, etc.) |
| Mark a task as complete |
| Delete a task |
Subtask Management
Tool | Description |
| Add a subtask/checklist item to an existing task |
| Mark a subtask as complete |
Project Management
Tool | Description |
| List all projects/lists |
GTD (Getting Things Done) Tools
Dedicated tools for GTD productivity workflows:
Tool | Description |
| Tasks needing immediate attention (high priority, due today, or overdue) |
| Tasks for your next work session (medium priority or due tomorrow) |
| All tasks grouped by urgency for weekly planning |
| Tasks without dates or priority (ideas for later) |
GTD Workflow Example:
# Morning: Check what needs attention NOW
gtd_get_engaged_tasks()
# Shows: High priority tasks, tasks due today, overdue tasks
# After clearing engaged items: What's next?
gtd_get_next_tasks()
# Shows: Medium priority tasks, tasks due tomorrow
# Weekly planning session
gtd_get_weekly_review()
# Shows: Overdue (0) / Today (3) / This Week (5) / No Date (12)
# Periodically review ideas
gtd_get_someday_tasks()
# Shows: Tasks without dates, grouped by projectCommon Parameters
Dates: Use YYYY-MM-DD for all-day tasks or YYYY-MM-DDTHH:MM:SS for specific times.
Reminders: List of RFC 5545 triggers:
TRIGGER:PT0S- At start timeTRIGGER:P0DT1H0M0S- 1 hour beforeTRIGGER:P1DT0H0M0S- 1 day before
Priority levels: 0 (none), 1 (low), 3 (medium), 5 (high)
Match modes: When searching by title:
exact- Title must match exactly (case-insensitive)partial- Title contains search term (default)fuzzy- Allows typos using Levenshtein distance
V2 API Tools (Optional)
These tools require V2 API credentials (TICKTICK_USERNAME and TICKTICK_PASSWORD):
Tool | Description |
| List all tags in your account |
| Add a tag to a task |
| Remove a tag from a task |
| Search tasks by title or content |
| Sort completed tasks alphabetically by completedTime |
Enhanced list_tasks with V2:
status="completed"- List completed tasks (V2 required)project_name="Inbox"- Access the Inbox project (V2 required)
Filtering Tasks
The list_tasks tool supports advanced filtering with combinable parameters:
Priority filter (priority):
high- Priority 5 tasksmedium- Priority 3 taskslow- Priority 1 tasksnone- Priority 0 tasks (no priority set)
Due date filter (due):
today- Tasks due todaytomorrow- Tasks due tomorrowthis_week- Tasks due within the next 7 daysoverdue- Tasks past their due dateupcoming- Tasks with any future due date
Status filter (status):
active- Active/incomplete tasks (default)completed- Completed tasks onlyall- All tasks regardless of status
Examples:
# High priority tasks due today
list_tasks(priority="high", due="today")
# All overdue tasks
list_tasks(due="overdue")
# Completed tasks in a specific project
list_tasks(project_name="Work", status="completed")
# Medium priority tasks due this week
list_tasks(priority="medium", due="this_week")V2 API Features
The following features require V2 API credentials (optional):
✅ Inbox project access (
list_tasks(project_name="Inbox"))✅ Tag management (
list_tags,add_tag,remove_tag)✅ Listing completed tasks (
list_tasks(status="completed"))✅ Search tasks (
search_tasks)✅ Sort completed tasks alphabetically (
sort_completed_tasks)
Without V2 credentials: All V1 features work normally. V2 features return helpful messages explaining how to enable them.
Migrating from cronjob-ticktick: The sort_completed_tasks tool replaces the standalone cronjob-ticktick project for sorting completed tasks alphabetically.
Setup
Option 1: Local Installation
Credentials: Create a
.envfile based on.env.example. You need your TickTick API credentials from the TickTick Developer Center.Installation:
uv pip install -e .First-time OAuth Authentication: Run the server once locally to complete OAuth authentication. This will create a
.token-oauthfile.Usage with Claude/Gemini: Add this to your MCP config:
{ "mcpServers": { "ticktick": { "command": "uv", "args": ["run", "--path", "/path/to/this/dir", "ticktick-mcp"] } } }
Option 2: Docker Deployment
Deploy the MCP server on your own infrastructure (VPS, home server) for remote access.
Prerequisites
Docker and Docker Compose installed
TickTick API credentials from Developer Center
Completed OAuth authentication (
.token-oauthfile)
Quick Start
Create environment file:
cp .env.example .env # Edit .env with your credentialsBuild and start:
docker-compose up -dVerify health:
curl http://localhost:8080/health # Expected: {"status": "ok"}
Environment Variables
Variable | Required | Description |
| Yes | OAuth2 client ID from TickTick Developer Center |
| Yes | OAuth2 client secret |
| No | Path to OAuth token file (default: |
| No | Port for health check endpoint (default: |
| No | Email for V2 API (enables tags, search, completed tasks, Inbox) |
| No | Password for V2 API (required with username) |
OAuth Token Setup
The OAuth token must be generated locally first:
Run the server locally once to complete OAuth flow
Copy the generated
.token-oauthfile to your Docker volume:docker cp .token-oauth ticktick-mcp:/app/data/.token-oauthOr mount it directly in
docker-compose.yml:volumes: - ./.token-oauth:/app/data/.token-oauth:ro
Docker Compose Configuration
The default docker-compose.yml includes:
Health checks: Automatic container health monitoring
Volume persistence: OAuth tokens survive container restarts
Configurable ports: Change via
HEALTH_PORTenvironment variableRestart policy: Container auto-restarts unless manually stopped
Custom Port
To use a different health check port:
HEALTH_PORT=9090 docker-compose up -dOr in your .env file:
HEALTH_PORT=9090Troubleshooting
"No OAuth token found"
The OAuth token file is missing or invalid:
Complete OAuth authentication locally first
Ensure the token file is accessible in the container
Check
TOKEN_CACHE_PATHenvironment variable
Health check failing
Verify the container is running:
docker psCheck container logs:
docker logs ticktick-mcpEnsure port 8080 is not blocked by firewall
Container not starting
Check Docker logs:
docker-compose logsVerify environment variables are set correctly
Ensure credentials are valid
Development
Running Tests
uv pip install -e ".[dev]"
uv run pytest tests/ -vCode Coverage
uv run pytest --cov=ticktick_mcp_py --cov-report=htmlLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FranzFelberer/ticktick-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server