Humanform for VS Code
app.humanform/mcp
Anthropometric prediction API: predict measurements, list countries, list measurement names.
client:VS Code
transport:stdio
runtime:npm
Install Humanform in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "humanform-api-key",
"description": "HUMANFORM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "humanform-api-url",
"description": "HUMANFORM_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@humanform/mcp"
],
"env": {
"HUMANFORM_API_KEY": "${input:humanform-api-key}",
"HUMANFORM_API_URL": "${input:humanform-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs