marboba mcp for VS Code
io.github.somexai-applications-group/marboba-mcp
MarBoba IDP catalog as MCP tools: projects, APIs, runbooks, on-call, SLOs. Bring your own LLM.
client:VS Code
transport:stdio
runtime:npm
Install marboba mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "marboba-api-token",
"description": "MARBOBA_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "marboba-endpoint",
"description": "MARBOBA_ENDPOINT",
"password": true
}
],
"servers": {
"marboba-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@marboba/mcp"
],
"env": {
"MARBOBA_API_TOKEN": "${input:marboba-api-token}",
"MARBOBA_ENDPOINT": "${input:marboba-endpoint}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs