Hevy MCP (Remote) for VS Code
io.github.rwestergren/hevy-mcp-remote
Hosted/gateway-ready Hevy fitness MCP: workouts, routines, templates.
client:VS Code
transport:stdio
runtime:oci
Install Hevy MCP (Remote) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hevy-api-key",
"description": "HEVY_API_KEY",
"password": true
}
],
"servers": {
"hevy-mcp-remote": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/rwestergren/hevy-mcp:0.1.6"
],
"env": {
"HEVY_API_KEY": "${input:hevy-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs