Skip to content
VS Code

Release Intel for VS Code

io.github.barissozudogru/release-intel

Correlates commits, PRs, issues and contributors between two git refs for release notes.

client:VS Code transport:stdio runtime:npm

Install Release Intel in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "release-intel": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@barissozudogru/release-intel-mcp"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}"
      }
    }
  }
}

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

Release Intel in other clients