ticktick-mcp-server
A Model Context Protocol (MCP) server that connects AI assistants to your TickTick tasks, enabling task management through natural language.
README
ticktick-mcp-server
A Model Context Protocol (MCP) server that connects AI assistants to your TickTick tasks. Create, read, update, complete, and move tasks — all through natural language.
Platform: macOS only. Token storage uses the macOS Keychain. Linux and Windows support is planned.
How It Works
This server implements the Model Context Protocol, allowing AI assistants like Claude to manage your TickTick tasks through natural conversation. Once configured, you can say things like "create a task to buy groceries due Friday" or "show me all my tasks tagged @work."
Prerequisites
- Node.js 18 or later
- A TickTick account
- A TickTick OAuth app:
- Go to developer.ticktick.com/manage
- Create a new app
- Set the Redirect URI to
http://localhost:19876/callback - Copy your Client ID and Client Secret
Setup
1. Authorize
Run once to connect the server to your TickTick account:
TICKTICK_CLIENT_ID=your_client_id \
TICKTICK_CLIENT_SECRET=your_client_secret \
npx ticktick-mcp-server-auth
This opens your browser for OAuth consent and stores tokens securely in the macOS Keychain.
2. Configure Your MCP Client
Add to your MCP client config (e.g. Claude Desktop, Claude Code):
{
"mcpServers": {
"ticktick": {
"command": "npx",
"args": ["-y", "ticktick-mcp-server"],
"env": {
"TICKTICK_CLIENT_ID": "your_client_id"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
ticktick_create_task |
Create a new task (title required; content, project, tags, priority, dates, recurrence optional) |
ticktick_get_task |
Get full details of a single task |
ticktick_get_tasks |
List tasks with optional filters (project, tag, date range, completion status) |
ticktick_update_task |
Modify an existing task's properties (including recurrence) |
ticktick_complete_task |
Mark a task as done |
ticktick_move_task |
Move a task between projects |
ticktick_get_projects |
List all projects/lists |
ticktick_create_project |
Create a new project/list |
Example Prompts
Once configured, try these with your AI assistant:
- "Show me my tasks due this week"
- "Create a task called 'Review PR #42' in my Work project with high priority"
- "Move the grocery list task to my Personal project"
- "What projects do I have in TickTick?"
- "Create a recurring task to pay rent on the 1st of every month"
Troubleshooting
| Error | Fix |
|---|---|
Authentication failed |
Re-run the auth command above to refresh tokens |
Rate limited |
Wait the indicated number of seconds and retry |
| Auth command hangs | Ensure port 19876 is not in use by another process |
TICKTICK_CLIENT_ID not set |
Ensure the env var is set in your MCP client config |
Limitations
- macOS only — uses the macOS Keychain for token storage
- Moving a task creates a copy in the target project and completes the original; task IDs change
- Listing all tasks (without a project filter) fetches each project sequentially
- Subtasks and attachments are not currently supported
License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.