Skip to content
VS Code

redmine for VS Code

io.github.vfa-khuongdv/redmine

MCP server for Redmine API integration with AI agents.

client:VS Code transport:stdio runtime:npm

Install redmine 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-username",
      "description": "REDMINE_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "redmine-password",
      "description": "REDMINE_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "redmine": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@duongkhuong/mcp-redmine"
      ],
      "env": {
        "REDMINE_URL": "${input:redmine-url}",
        "REDMINE_API_KEY": "${input:redmine-api-key}",
        "REDMINE_USERNAME": "${input:redmine-username}",
        "REDMINE_PASSWORD": "${input:redmine-password}"
      }
    }
  }
}

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

redmine in other clients