SisRUN Training Plan for VS Code
io.github.cdutr/sisrun-mcp
Read your SisRUN (appsisrun.com.br) training plan: prescribed workouts, pace/HR windows, structure
client:VS Code
transport:stdio
runtime:pypi
Install SisRUN Training Plan in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sisrun-email",
"description": "SISRUN_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "sisrun-password",
"description": "SISRUN_PASSWORD",
"password": true
}
],
"servers": {
"sisrun-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"sisrun-mcp"
],
"env": {
"SISRUN_EMAIL": "${input:sisrun-email}",
"SISRUN_PASSWORD": "${input:sisrun-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs