Skip to content
VS Code

rundeck mcp server for VS Code

io.github.mariomorenodev/rundeck-mcp-server

50 tools to manage Rundeck jobs, executions, projects, nodes, and system via MCP

client:VS Code transport:stdio runtime:npm

Install rundeck mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rundeck-url",
      "description": "RUNDECK_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rundeck-api-token",
      "description": "RUNDECK_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rundeck-api-version",
      "description": "RUNDECK_API_VERSION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rundeck-timeout",
      "description": "RUNDECK_TIMEOUT",
      "password": true
    }
  ],
  "servers": {
    "rundeck-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "rundeck-mcp-server"
      ],
      "env": {
        "RUNDECK_URL": "${input:rundeck-url}",
        "RUNDECK_API_TOKEN": "${input:rundeck-api-token}",
        "RUNDECK_API_VERSION": "${input:rundeck-api-version}",
        "RUNDECK_TIMEOUT": "${input:rundeck-timeout}"
      }
    }
  }
}

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

rundeck mcp server in other clients