Silvanexum for VS Code
io.github.silvanexum/silvanexum
Spend control for AI agents - cost attribution, budget caps, and signed runs as MCP tools.
client:VS Code
transport:stdio
runtime:npm
Install Silvanexum in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "silvanexum-api-key",
"description": "SILVANEXUM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "silvanexum-base-url",
"description": "SILVANEXUM_BASE_URL",
"password": true
}
],
"servers": {
"silvanexum": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@silvanexum/mcp"
],
"env": {
"SILVANEXUM_API_KEY": "${input:silvanexum-api-key}",
"SILVANEXUM_BASE_URL": "${input:silvanexum-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs