floom for VS Code
io.github.floomhq/floom
Deploy Python functions as web apps with auto-generated UI, REST API, and shareable links.
client:VS Code
transport:stdio
runtime:npm
Install floom in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "floom-base-url",
"description": "FLOOM_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "floom-api-key",
"description": "FLOOM_API_KEY",
"password": true
}
],
"servers": {
"floom": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@floomhq/mcp-server"
],
"env": {
"FLOOM_BASE_URL": "${input:floom-base-url}",
"FLOOM_API_KEY": "${input:floom-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