chaprola for VS Code
io.github.cletcher/chaprola
Serverless API backend: query, JOIN, pivot, batch ops, email, FHIR, programs via HTTP.
client:VS Code
transport:stdio
runtime:npm
Install chaprola in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "chaprola-username",
"description": "CHAPROLA_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "chaprola-api-key",
"description": "CHAPROLA_API_KEY",
"password": true
}
],
"servers": {
"chaprola": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@chaprola/mcp-server"
],
"env": {
"CHAPROLA_USERNAME": "${input:chaprola-username}",
"CHAPROLA_API_KEY": "${input:chaprola-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