Skip to content
VS Code

mcp gera clone for VS Code

io.github.geraservicesuk/mcp-gera-clone

GeraClone MCP — discover expert clones, check operator's clone status, start expert chats (consent).

client:VS Code transport:stdio runtime:npm

Install mcp gera clone in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "geraclone-api-url",
      "description": "GERACLONE_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gera-user-token",
      "description": "GERA_USER_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-gera-clone": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gera-services/mcp-gera-clone"
      ],
      "env": {
        "GERACLONE_API_URL": "${input:geraclone-api-url}",
        "GERA_USER_TOKEN": "${input:gera-user-token}"
      }
    }
  }
}

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

mcp gera clone in other clients