Skip to content
VS Code

Redmine MCP Server for VS Code

io.github.igorolv/redmine-mcp-server

Redmine for AI agents: issues, projects, wiki, attachments, time entries and release analytics

client:VS Code transport:stdio runtime:oci

Install Redmine MCP Server 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
    },
    {
      "type": "promptString",
      "id": "redmine-mcp-write-enabled",
      "description": "REDMINE_MCP_WRITE_ENABLED",
      "password": true
    }
  ],
  "servers": {
    "redmine-mcp-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/igorolv/redmine-mcp-server:0.1.0"
      ],
      "env": {
        "REDMINE_URL": "${input:redmine-url}",
        "REDMINE_API_KEY": "${input:redmine-api-key}",
        "REDMINE_MCP_WRITE_ENABLED": "${input:redmine-mcp-write-enabled}"
      }
    }
  }
}

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 Server in other clients