Skip to content
VS Code

mcp server for VS Code

io.github.gitscrum-core/mcp-server

MCP server for GitScrum — manage tasks, sprints, time tracking, and client workflows via AI

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gitscrum-api-url",
      "description": "GITSCRUM_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gitscrum-token",
      "description": "GITSCRUM_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gitscrum-studio/mcp-server"
      ],
      "env": {
        "GITSCRUM_API_URL": "${input:gitscrum-api-url}",
        "GITSCRUM_TOKEN": "${input:gitscrum-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 server in other clients