Skip to content
VS Code

standup mr for VS Code

io.github.jubstaaa/standup-mr

Standup notes from merge request state, with the failed job's error lines.

client:VS Code transport:stdio runtime:npm

Install standup mr in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "standup-provider",
      "description": "STANDUP_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-host",
      "description": "GITHUB_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gitlab-host",
      "description": "GITLAB_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gitlab-token",
      "description": "GITLAB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "standup-mr": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "standup-mr"
      ],
      "env": {
        "STANDUP_PROVIDER": "${input:standup-provider}",
        "GITHUB_HOST": "${input:github-host}",
        "GITHUB_TOKEN": "${input:github-token}",
        "GITLAB_HOST": "${input:gitlab-host}",
        "GITLAB_TOKEN": "${input:gitlab-token}"
      }
    }
  }
}

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

standup mr in other clients