wovo for VS Code
io.github.theshajha/wovo
Deploy HTML from any AI tool to a versioned, shareable library on wovo.dev; manage pages.
client:VS Code
transport:stdio
runtime:npm
Install wovo in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wovo-token",
"description": "WOVO_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "wovo-workspace",
"description": "WOVO_WORKSPACE",
"password": true
}
],
"servers": {
"wovo": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@gowovo/wovo"
],
"env": {
"WOVO_TOKEN": "${input:wovo-token}",
"WOVO_WORKSPACE": "${input:wovo-workspace}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs