TickTick MCP
Provides tools for managing TickTick tasks and projects, including listing projects and sections, creating, updating, completing, and deleting tasks, and creating projects.
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 MCPcreate a new task to buy groceries tomorrow"
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 — remote connector for Claude
A single-user remote MCP server that lets Claude create and manage TickTick to-dos. Because it's a remote connector (Claude reaches it over HTTPS from Anthropic's cloud), one deployment works on all platforms: claude.ai web, the mobile apps, Claude Desktop, and Cowork.
It wraps the TickTick Open API and exposes nine tools:
Tool | What it does |
| List your projects/lists (call first to get a |
| List a kanban project's sections/columns (to get a |
| List open tasks in a project (with each task's section) |
| Full detail of one task |
| Create a to-do (Inbox, a project, or a kanban section) |
| Edit fields on a task (incl. moving it between sections) |
| Mark a task done |
| Permanently delete a task |
| Create a new list/project |
Dates are handled for Africa/Harare (UTC+2) — pass YYYY-MM-DD (all-day) or YYYY-MM-DDTHH:MM (timed) and they land on the day you mean.
Setup (about 20 minutes, one time)
1. Register a TickTick app
Go to https://developer.ticktick.com, create an app, and set its redirect URI to:
http://localhost:8080/callbackNote the Client ID and Client Secret.
2. Get an access token
npm install
npm run authPaste your Client ID/Secret when prompted, authorize in the browser, and the script prints your TICKTICK_ACCESS_TOKEN. TickTick issues a long-lived token (~180 days) and no refresh token, so re-run npm run auth and update the env var when it expires.
3. Generate a URL secret
node -e "console.log(require('crypto').randomBytes(24).toString('hex'))"This becomes the secret path segment in your connector URL. Treat it like a password.
4. Test locally first (optional but recommended)
You don't need the Vercel CLI to test. Create .env.local (copy .env.example) with all four vars, then:
npm startThis serves the exact production handler on http://localhost:8080. Connect Claude Code:
claude mcp add --transport http ticktick http://localhost:8080/api/<MCP_SHARED_SECRET>/mcpThen ask Claude Code to list your TickTick projects to confirm it works end to end.
5. Deploy to Vercel
Create a new Vercel project from this folder, then add these environment variables (Project → Settings → Environment Variables):
TICKTICK_CLIENT_IDTICKTICK_CLIENT_SECRETTICKTICK_ACCESS_TOKENMCP_SHARED_SECRET(the secret from step 3)
npm run deployYour endpoint is:
https://<your-app>.vercel.app/api/<MCP_SHARED_SECRET>/mcp6. Add it to Claude
Settings → Connectors → Add custom connector → paste the full URL above → Add. Leave the OAuth fields blank (this server is authless; the secret in the URL is the guard). Once added on one platform it's available on all of them.
Related MCP server: Todoist MCP Server
How it stays secure for a single user
There's no OAuth handshake between Claude and this server. Instead the secret lives in the URL path, and the server returns 404 to any request whose path secret doesn't match MCP_SHARED_SECRET. Your TickTick tokens never leave the server — Claude only ever calls the eight tools.
If you later want to share this with teammates (each hitting their own TickTick account), that's the point where you'd swap the path-secret model for a real OAuth flow. The tool logic in lib/ticktick.js wouldn't need to change.
Notes
The server is stateless per request, which suits serverless — no session state to lose between cold starts.
The TickTick access token is long-lived (~180 days) and used directly — TickTick's Open API doesn't issue refresh tokens, so there's no auto-refresh. Re-run
npm run authand update the env var when it expires.delete_taskis irreversible; the tool description nudges Claude towardcomplete_taskunless you clearly want deletion.
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
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/emB99/ticktick-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server