Skip to content
VS Code

Remogram for VS Code

io.github.attebury/remogram

SCM & forge boundary MCP: normalized, typed JSON from attributed Gitea, GitLab, and GitHub providers

client:VS Code transport:stdio runtime:npm

Install Remogram in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gh-token",
      "description": "GH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gitlab-token",
      "description": "GITLAB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gitea-token",
      "description": "GITEA_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "remogram-cwd",
      "description": "REMOGRAM_CWD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "remogram-operator-config",
      "description": "REMOGRAM_OPERATOR_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "remogram": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@remogram/mcp"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "GH_TOKEN": "${input:gh-token}",
        "GITLAB_TOKEN": "${input:gitlab-token}",
        "GITEA_TOKEN": "${input:gitea-token}",
        "REMOGRAM_CWD": "${input:remogram-cwd}",
        "REMOGRAM_OPERATOR_CONFIG": "${input:remogram-operator-config}"
      }
    }
  }
}

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

Remogram in other clients