RoutineKit for VS Code
io.github.sjh9714/routinekit
Capture tool workflows, save typed tools, and replay with human approval. Includes an MCP Apps UI.
client:VS Code
transport:stdio
runtime:npm
Install RoutineKit in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "routinekit-config",
"description": "ROUTINEKIT_CONFIG",
"password": true
},
{
"type": "promptString",
"id": "routinekit-home",
"description": "ROUTINEKIT_HOME",
"password": true
}
],
"servers": {
"routinekit": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"routinekit"
],
"env": {
"ROUTINEKIT_CONFIG": "${input:routinekit-config}",
"ROUTINEKIT_HOME": "${input:routinekit-home}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs