Cloudhil for VS Code
io.github.tetef/cloudhil
Flash pre-built STM32/LPC ELFs on real Nucleo/Discovery boards over HTTPS. Does not compile.
client:VS Code
transport:stdio
runtime:pypi
Install Cloudhil in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cloudhil-url",
"description": "CLOUDHIL_URL",
"password": true
},
{
"type": "promptString",
"id": "cloudhil-api-key",
"description": "CLOUDHIL_API_KEY",
"password": true
}
],
"servers": {
"cloudhil": {
"type": "stdio",
"command": "uvx",
"args": [
"cloudhil-mcp"
],
"env": {
"CLOUDHIL_URL": "${input:cloudhil-url}",
"CLOUDHIL_API_KEY": "${input:cloudhil-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