inbody api mcp for VS Code
io.github.rwestergren/inbody-api-mcp
MCP server for InBody body-composition data — scans, body fat, muscle mass, body water
client:VS Code
transport:stdio
runtime:pypi
Install inbody api mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "inbody-login-id",
"description": "INBODY_LOGIN_ID",
"password": true
},
{
"type": "promptString",
"id": "inbody-login-pw",
"description": "INBODY_LOGIN_PW",
"password": true
},
{
"type": "promptString",
"id": "inbody-country-code",
"description": "INBODY_COUNTRY_CODE",
"password": true
}
],
"servers": {
"inbody-api-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"inbody-api-mcp"
],
"env": {
"INBODY_LOGIN_ID": "${input:inbody-login-id}",
"INBODY_LOGIN_PW": "${input:inbody-login-pw}",
"INBODY_COUNTRY_CODE": "${input:inbody-country-code}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs