Squire for VS Code
io.github.reidgoodbar/squire
CLI-first remote runtimes for validation and offload tasks, exposed over MCP stdio.
client:VS Code
transport:stdio
runtime:oci
Install Squire in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "squire-token",
"description": "SQUIRE_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "squire-api-base-url",
"description": "SQUIRE_API_BASE_URL",
"password": true
}
],
"servers": {
"squire": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/reidgoodbar/squire-mcp:0.6.5"
],
"env": {
"SQUIRE_TOKEN": "${input:squire-token}",
"SQUIRE_API_BASE_URL": "${input:squire-api-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs