Hevy MCP Server for VS Code
io.github.chrisdoc/hevy-mcp
MCP server for managing workouts, routines, and exercise data through the Hevy API
client:VS Code
transport:stdio
runtime:npm
Install Hevy MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hevy-api-key",
"description": "HEVY_API_KEY",
"password": true
}
],
"servers": {
"hevy-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hevy-mcp"
],
"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