Skip to content
VS Code

gctrl for VS Code

io.github.gctrl-tech/gctrl

Governed graph-native agent memory: knowledge extraction, fusion, hybrid RAG, scoped access tokens.

client:VS Code transport:stdio runtime:npm

Install gctrl in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gctrl-gateway-url",
      "description": "GCTRL_GATEWAY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gctrl-api-url",
      "description": "GCTRL_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gctrl-api-token",
      "description": "GCTRL_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "gctrl": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gctrl-mcp"
      ],
      "env": {
        "GCTRL_GATEWAY_URL": "${input:gctrl-gateway-url}",
        "GCTRL_API_URL": "${input:gctrl-api-url}",
        "GCTRL_API_TOKEN": "${input:gctrl-api-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

gctrl in other clients