GoModel for VS Code
io.github.enterpilot/gomodel
Self-hosted gateway aggregating upstream MCP servers behind one authenticated HTTP endpoint.
client:VS Code
transport:stdio
runtime:oci
Install GoModel in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gomodel-master-key",
"description": "GOMODEL_MASTER_KEY",
"password": true
},
{
"type": "promptString",
"id": "mcp-servers",
"description": "MCP_SERVERS",
"password": true
}
],
"servers": {
"gomodel": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/enterpilot/gomodel:0.1.97"
],
"env": {
"GOMODEL_MASTER_KEY": "${input:gomodel-master-key}",
"MCP_SERVERS": "${input:mcp-servers}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs