kasbah mcp for VS Code
io.github.al-adnane/kasbah-mcp
Governance layer for agentic AI — signed, verifiable receipts for every agent action.
client:VS Code
transport:stdio
runtime:npm
Install kasbah mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kasbah-api-key",
"description": "KASBAH_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kasbah-api",
"description": "KASBAH_API",
"password": true
}
],
"servers": {
"kasbah-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@yobekasbah/mcp-server"
],
"env": {
"KASBAH_API_KEY": "${input:kasbah-api-key}",
"KASBAH_API": "${input:kasbah-api}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs