ticktick mcp for VS Code
io.github.partymola/ticktick-mcp
MCP server for TickTick task management: field-preserving updates and completion tracking.
client:VS Code
transport:stdio
runtime:oci
Install ticktick mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ticktick-client-id",
"description": "TICKTICK_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "ticktick-client-secret",
"description": "TICKTICK_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "ticktick-username",
"description": "TICKTICK_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "ticktick-password",
"description": "TICKTICK_PASSWORD",
"password": true
}
],
"servers": {
"ticktick-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/partymola/ticktick-mcp:v0.5.0"
],
"env": {
"TICKTICK_CLIENT_ID": "${input:ticktick-client-id}",
"TICKTICK_CLIENT_SECRET": "${input:ticktick-client-secret}",
"TICKTICK_USERNAME": "${input:ticktick-username}",
"TICKTICK_PASSWORD": "${input:ticktick-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs