karea mcp for VS Code
io.github.starecz/karea-mcp
Karea task manager - 12 tools covering 69 actions, for Claude Code, Cursor, and other MCP clients.
client:VS Code
transport:stdio
runtime:npm
Install karea mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "karea-api-key",
"description": "KAREA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "karea-url",
"description": "KAREA_URL",
"password": true
}
],
"servers": {
"karea-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"karea-mcp"
],
"env": {
"KAREA_API_KEY": "${input:karea-api-key}",
"KAREA_URL": "${input:karea-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs