revenueos for VS Code
io.github.unempyd/revenueos
Self-hosted revenue department: find opportunities, execute approved work, measure results.
client:VS Code
transport:stdio
runtime:pypi
Install revenueos in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "revenueos-root",
"description": "REVENUEOS_ROOT",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
}
],
"servers": {
"revenueos": {
"type": "stdio",
"command": "uvx",
"args": [
"revenueos"
],
"env": {
"REVENUEOS_ROOT": "${input:revenueos-root}",
"ANTHROPIC_API_KEY": "${input:anthropic-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