Gateco for VS Code
ai.gateco/gateco
Permission-aware retrieval for AI systems: policy-enforced access to organizational knowledge.
client:VS Code
transport:stdio
runtime:pypi
Install Gateco in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gateco-api-key",
"description": "GATECO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gateco-base-url",
"description": "GATECO_BASE_URL",
"password": true
}
],
"servers": {
"gateco": {
"type": "stdio",
"command": "uvx",
"args": [
"gateco"
],
"env": {
"GATECO_API_KEY": "${input:gateco-api-key}",
"GATECO_BASE_URL": "${input:gateco-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