LoopGrid MCP for VS Code
io.github.loopgridio/loopgrid-mcp
MCP bridge for tamper-evident evidence around consequential AI and agent decisions.
client:VS Code
transport:stdio
runtime:pypi
Install LoopGrid MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "loopgrid-base-url",
"description": "LOOPGRID_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "loopgrid-service-key",
"description": "LOOPGRID_SERVICE_KEY",
"password": true
},
{
"type": "promptString",
"id": "loopgrid-workspace",
"description": "LOOPGRID_WORKSPACE",
"password": true
}
],
"servers": {
"loopgrid-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"loopgrid-mcp"
],
"env": {
"LOOPGRID_BASE_URL": "${input:loopgrid-base-url}",
"LOOPGRID_SERVICE_KEY": "${input:loopgrid-service-key}",
"LOOPGRID_WORKSPACE": "${input:loopgrid-workspace}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs