Skip to content
VS Code

redmine mcp stdio for VS Code

io.github.andrelaptenok/redmine-mcp-stdio

Local MCP (stdio) server for Redmine: issues, projects and time tracking from any MCP client.

client:VS Code transport:stdio runtime:npm

Install redmine mcp stdio in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "redmine-url",
      "description": "REDMINE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "redmine-api-key",
      "description": "REDMINE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "redmine-mcp-stdio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "redmine-mcp-stdio"
      ],
      "env": {
        "REDMINE_URL": "${input:redmine-url}",
        "REDMINE_API_KEY": "${input:redmine-api-key}"
      }
    }
  }
}

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

redmine mcp stdio in other clients