clickup for VS Code
io.github.taazkareem/clickup
Premium AI integration. Tasks, lists, docs, folders, time. 50+ tools. Instant setup.
client:VS Code
transport:stdio
runtime:npm
Install clickup in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clickup-mcp-license-key",
"description": "CLICKUP_MCP_LICENSE_KEY",
"password": true
},
{
"type": "promptString",
"id": "clickup-api-key",
"description": "CLICKUP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "clickup-team-id",
"description": "CLICKUP_TEAM_ID",
"password": true
},
{
"type": "promptString",
"id": "document-support",
"description": "DOCUMENT_SUPPORT",
"password": true
}
],
"servers": {
"clickup": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@taazkareem/clickup-mcp-server"
],
"env": {
"CLICKUP_MCP_LICENSE_KEY": "${input:clickup-mcp-license-key}",
"CLICKUP_API_KEY": "${input:clickup-api-key}",
"CLICKUP_TEAM_ID": "${input:clickup-team-id}",
"DOCUMENT_SUPPORT": "${input:document-support}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs