soma for VS Code
io.github.medianemi-beep/soma
Execution-verified code generation and verification with signed, offline-checkable certificates.
client:VS Code
transport:stdio
runtime:npm
Install soma in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "soma-api-key",
"description": "SOMA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "soma-base-url",
"description": "SOMA_BASE_URL",
"password": true
}
],
"servers": {
"soma": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"soma-verify-mcp"
],
"env": {
"SOMA_API_KEY": "${input:soma-api-key}",
"SOMA_BASE_URL": "${input:soma-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