Disclaimer: This is an unofficial, community-maintained project and is not affiliated with, endorsed by, or connected to TickTick or Appest. "TickTick" is a trademark of Appest. This tool uses the official TickTick Open API.
CLI and MCP server for TickTick task management.
# Install globally
npm install -g ticktick-cli
# Run interactive setup (creates API credentials and authenticates)
ticktick setup
# Create your first task
ticktick tasks create "Hello TickTick!" --priority high
# See what's due soon
ticktick tasks dueThe setup wizard will guide you through:
- Creating an app at https://developer.ticktick.com/
- Entering your Client ID and Secret
- Authenticating via OAuth
- Easy setup - Interactive wizard handles configuration
- Short IDs - Use abbreviated 8-character IDs for convenience
- Tags support - Organize tasks with tags
- Interactive mode - Create tasks with guided prompts
- Human-readable output - Table format by default, JSON optional
- OAuth 2.0 with automatic token refresh
- Supports global and China regions
- MCP server for Claude Desktop and Claude Code integration
npm install -g ticktick-cliOr use directly with npx:
npx ticktick-cli setupticktick setupThis walks you through the entire setup process interactively.
- Go to https://developer.ticktick.com/
- Sign in and click "Manage Apps"
- Click "+App Name" to create a new application
- Set redirect URI to
http://localhost:18888/callback - Note your Client ID and Client Secret
Create ~/.config/ticktick/config.json:
{
"clientId": "YOUR_CLIENT_ID",
"clientSecret": "YOUR_CLIENT_SECRET",
"redirectUri": "http://localhost:18888/callback",
"region": "global"
}Or set environment variables:
export TICKTICK_CLIENT_ID="your_client_id"
export TICKTICK_CLIENT_SECRET="your_client_secret"ticktick auth login
# Opens authorization URL - visit it in your browser
# After authorizing, copy the code from the redirect URL
ticktick auth exchange YOUR_CODETokens are stored in ~/.config/ticktick/tokens.json and auto-refresh.
ticktick <command> [options]
Commands:
setup Interactive setup wizard
auth Authentication management
projects Project operations
tasks Task operations
Global options:
--help, -h Show help
--version, -v Show version
--format <type> Output format: text (default) or json
# Interactive mode (prompts for all fields)
ticktick tasks create
# Create task (goes to default project)
ticktick tasks create "Buy groceries" \
--due 2026-01-30 \
--priority high \
--tags "shopping,errands" \
--reminder 1h
# Create task in specific project
ticktick tasks create PROJECT_ID "Task title"
# List and get (use short IDs!)
ticktick tasks list PROJECT_ID
ticktick tasks get PROJECT_ID 685cfca6
# Update
ticktick tasks update 685cfca6 --title "New title" --priority medium
# Complete and delete
ticktick tasks complete PROJECT_ID 685cfca6
ticktick tasks delete PROJECT_ID 685cfca6
# Search (by text, tags, or priority)
ticktick tasks search "meeting"
ticktick tasks search --tags "work"
ticktick tasks search --priority high
# Filter by due date
ticktick tasks due 3 # Tasks due in 3 days
ticktick tasks priority # High priority tasksticktick projects list # List all projects
ticktick projects get PROJECT_ID # Get project with tasks
ticktick projects create "Name" --color "#ff6b6b" # Create project
ticktick projects delete PROJECT_ID # Delete projectticktick auth status # Check auth status
ticktick auth login # Get authorization URL
ticktick auth exchange CODE # Exchange code for tokens
ticktick auth refresh # Manually refresh token
ticktick auth logout # Clear tokensAll IDs are displayed as 8-character short IDs for convenience:
ID | Title | Due | Pri
--------------------------------------------------------------
685cfca6 | Buy groceries | 2026-01-30 | high
a1b2c3d4 | Call mom | 2026-01-31 | medium
Use these short IDs in commands instead of full UUIDs.
# Table format (default) - human readable
ticktick projects list
# JSON format - for scripting
ticktick projects list --format jsonThe package includes an MCP (Model Context Protocol) server for AI assistant integration.
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/claude/claude_desktop_config.json
{
"mcpServers": {
"ticktick": {
"command": "ticktick-mcp"
}
}
}Restart Claude Desktop after adding the configuration.
Add to your Claude Code MCP settings (~/.claude/settings.json):
{
"mcpServers": {
"ticktick": {
"command": "ticktick-mcp"
}
}
}Or add via the CLI:
claude mcp add ticktick ticktick-mcpOnce configured, the AI assistant can use these tools:
| Tool | Description |
|---|---|
ticktick_auth_status |
Check authentication status |
ticktick_projects_list |
List all projects |
ticktick_projects_get |
Get project with tasks |
ticktick_tasks_list |
List tasks in project |
ticktick_tasks_get |
Get task details |
ticktick_tasks_create |
Create a new task |
ticktick_tasks_update |
Update an existing task |
ticktick_tasks_complete |
Mark task as complete |
ticktick_tasks_delete |
Delete a task |
ticktick_tasks_search |
Search by keyword, tags, or priority |
ticktick_tasks_due |
Get tasks due within N days |
ticktick_tasks_priority |
Get high priority tasks |
Example prompts for Claude:
- "What tasks do I have due this week?"
- "Create a task to buy groceries tomorrow with high priority"
- "Mark my grocery task as complete"
- "Search for all tasks tagged 'work'"
This package can be used as a Claude Code skill for natural language task management.
- Clone or download this repository
- Run
ticktick setupto configure credentials - Copy
SKILL.mdto your project or reference it in your Claude Code configuration
Add to your project's .claude/settings.json:
{
"skills": [
"/path/to/ticktick-cli/SKILL.md"
]
}Or symlink SKILL.md to your project:
ln -s /path/to/ticktick-cli/SKILL.md .claude/skills/ticktick.mdThe skill provides Claude Code with documentation on how to use the CLI commands.
import * as tasks from 'ticktick-cli/tasks';
import * as projects from 'ticktick-cli/projects';
// List projects
const projectList = await projects.list();
// Create a task with tags (empty string for default project)
const result = await tasks.create('', 'New task', {
dueDate: '2026-01-30',
priority: 'high',
tags: ['work', 'urgent'],
});
// Search by tags
const results = await tasks.search('', { tags: ['work'] });| File | Purpose |
|---|---|
~/.config/ticktick/config.json |
Client credentials |
~/.config/ticktick/tokens.json |
OAuth tokens (auto-managed) |
Priority values: none, low, medium, high
Date format: YYYY-MM-DD or ISO 8601 (2026-01-15T17:00:00Z)
Reminder format: 15m, 30m, 1h, 2h, 1d (before due time)
Projects: Omit project ID to use default; use ticktick projects list to see all projects
Short IDs: First 8 characters of full ID, used for convenience
Run ticktick setup to configure your credentials.
Run ticktick auth login and follow the OAuth flow, or run ticktick setup to start fresh.
Tokens auto-refresh, but if you see issues, run ticktick auth refresh or ticktick auth login.
- Ensure
ticktick-mcpis in your PATH (installed globally) - Check that credentials are configured:
ticktick auth status - Restart Claude Desktop/Claude Code after config changes
MIT