clappia mcp for VS Code
io.github.clappia-dev/clappia-mcp
An MCP server that provides Clappia workspace, forms, workflows, submissions, and analytics
client:VS Code
transport:stdio
runtime:oci
Install clappia mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clappia-api-key",
"description": "CLAPPIA_API_KEY",
"password": true
}
],
"servers": {
"clappia-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/okaru413/clappia-mcp:1.0.1"
],
"env": {
"CLAPPIA_API_KEY": "${input:clappia-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