forked from kvanland/ticktick-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
33 lines (33 loc) · 1.06 KB
/
plugin.json
File metadata and controls
33 lines (33 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "ticktick",
"description": "Manage TickTick tasks, projects, and priorities directly from Claude Code",
"version": "1.0.1",
"author": {
"name": "René Zander"
},
"homepage": "https://github.com/renezander030/ticktick-cli",
"repository": "https://github.com/renezander030/ticktick-cli",
"license": "MIT",
"keywords": ["ticktick", "tasks", "todo", "productivity", "mcp"],
"category": "productivity",
"mcpServers": {
"ticktick": {
"command": "node",
"args": ["${PLUGIN_DIR}/bin/ticktick-mcp.js"],
"env": {
"TICKTICK_CLIENT_ID": {
"description": "TickTick OAuth Client ID from developer.ticktick.com",
"required": false
},
"TICKTICK_CLIENT_SECRET": {
"description": "TickTick OAuth Client Secret from developer.ticktick.com",
"required": false
}
}
}
},
"setup": {
"instructions": "Run `ticktick setup` to configure OAuth credentials. Get your Client ID and Secret from https://developer.ticktick.com/",
"postInstall": "npm install"
}
}