Skip to main content

Rundeck MCP Server - Model Context Protocol server for Rundeck job automation

Project description

Rundeck MCP Server

Rundeck's local MCP (Model Context Protocol) server which provides tools to interact with your Rundeck instance, allowing you to list jobs, run jobs with options, and retrieve execution status and logs directly from your MCP-enabled client.

Prerequisites

  • asdf-vm installed.

  • uv installed globally.

  • A Rundeck API Token. To obtain a Rundeck API Token, follow these steps:

    1. Log in to your Rundeck instance and click on your username in the top-right corner.
    2. Navigate to User Profile and then User API Tokens.
    3. Click Generate New Token, provide a name, and select the appropriate roles.
    4. Copy the generated token and store it securely. You will need this token to configure the MCP server.

    Note: API tokens inherit the permissions of the user who created them. Ensure your user has appropriate access to the jobs you want to manage.

Using with MCP Clients

Cursor Integration

You can configure this MCP server directly within Cursor's settings.json file, by following these steps:

  1. Open Cursor settings (Cursor Settings > Tools > Add MCP, or Cmd+, on Mac, or Ctrl+, on Windows/Linux).

  2. Add the following configuration:

    {
      "mcpServers": {
        "rundeck-mcp": {
          "type": "stdio",
          "command": "uvx",
          "args": [
            "rundeck-mcp",
            "--enable-write-tools"
            // This flag enables write operations on the MCP Server enabling you to run jobs
          ],
          "env": {
            "RUNDECK_API_TOKEN": "${input:rundeck-api-token}",
            "RUNDECK_URL": "http://localhost:4440"
          }
        }
      }
    }
    

VS Code Integration

You can configure this MCP server directly within Visual Studio Code's settings.json file, allowing VS Code to manage the server lifecycle.

  1. Open VS Code settings (File > Preferences > Settings, or Cmd+, on Mac, or Ctrl+, on Windows/Linux).

  2. Search for "mcp" and ensure "Mcp: Enabled" is checked under Features > Chat.

  3. Click "Edit in settings.json" under "Mcp > Discovery: Servers".

  4. Add the following configuration:

    {
        "mcp": {
            "inputs": [
                {
                    "type": "promptString",
                    "id": "rundeck-api-token",
                    "description": "Rundeck API Token",
                    "password": true
                }
            ],
            "servers": {
                "rundeck-mcp": {
                    "type": "stdio",
                    "command": "uvx",
                    "args": [
                        "rundeck-mcp",
                        "--enable-write-tools"
                        // This flag enables write operations on the MCP Server enabling you to run jobs
                    ],
                    "env": {
                        "RUNDECK_API_TOKEN": "${input:rundeck-api-token}",
                        "RUNDECK_URL": "http://localhost:4440"
                        // Update this to your Rundeck server URL
                    }
                }
            }
        }
    }
    

Trying it in VS Code Chat (Agent)

  1. Ensure MCP is enabled in VS Code settings (Features > Chat > "Mcp: Enabled").
  2. Configure the server as described above.
  3. Open the Chat view in VS Code (View > Chat).
  4. Make sure Agent mode is selected. In the Chat view, you can enable or disable specific tools by clicking the tools icon.
  5. Enter a command such as List all jobs in project myproject or Run the deploy job with version 1.2.3 to interact with your Rundeck instance through the MCP server.
  6. You can start, stop, and manage your MCP servers using the command palette (Cmd+Shift+P/Ctrl+Shift+P) and searching for MCP: List Servers. Ensure the server is running before sending commands. You can also try to restart the server if you encounter any issues.

Claude Desktop Integration

You can configure this MCP server to work with Claude Desktop by adding it to Claude's configuration file.

  1. Locate your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Create or edit the configuration file and add the following configuration:

    {
      "mcpServers": {
        "rundeck-mcp": {
          "command": "uvx",
          "args": [
            "rundeck-mcp",
            "--enable-write-tools"
          ],
          "env": {
            "RUNDECK_API_TOKEN": "your-rundeck-api-token-here",
            "RUNDECK_URL": "http://localhost:4440"
          }
        }
      }
    }
    
  3. Replace the placeholder values:

    • Replace your-rundeck-api-token-here with your actual Rundeck API Token
    • Replace http://localhost:4440 with your Rundeck server URL
  4. Restart Claude Desktop completely for the changes to take effect.

  5. Test the integration by starting a conversation with Claude and asking something like "List all jobs in project myproject" or "Show me recent executions" to verify the MCP server is working.

    Security Note: Unlike VS Code's secure input prompts, Claude Desktop requires you to store your API token directly in the configuration file. Ensure this file has appropriate permissions (readable only by your user account) and consider the security implications of storing credentials in plain text.

Set up locally

  1. Clone the repository

  2. Install asdf plugins

    asdf plugin add python
    asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
    asdf plugin add uv
    
  3. Install tool versions using asdf:

    asdf install
    
  4. Create a virtual environment and install dependencies using uv (now that asdf has set the correct Python and uv versions):

    uv sync
    
  5. Ensure uv is available globally.

    The MCP server can be run from different places so you need uv to be available globally. To do so, follow the official documentation.

    Tip: You may need to restart your terminal and/or VS Code for the changes to take effect.

  6. Run it locally

    To run your cloned Rundeck MCP Server you need to update your configuration to use uv instead of uvx.

    "rundeck-mcp": {
        "type": "stdio",
        "command": "uv",
        "args": [
            "run",
            "--directory",
            "/path/to/your/mcp-server-directory",
            // Replace with the full path to the directory where you cloned the MCP server, e.g. "/Users/yourname/code/rundeck-mcp",
            "python",
            "-m",
            "rundeck_mcp",
            "--enable-write-tools"
            // This flag enables write operations on the MCP Server enabling you to run jobs
        ],
        "env": {
            "RUNDECK_API_TOKEN": "${input:rundeck-api-token}",
            "RUNDECK_URL": "http://localhost:4440"
            // Update this to your Rundeck server URL
        }
    }
    

Available Tools and Resources

This section describes the tools provided by the Rundeck MCP server. They are categorized based on whether they only read data or can modify data in your Rundeck instance.

Important: By default, the MCP server only exposes read-only tools. To enable tools that can modify your Rundeck instance (write-mode tools), you must explicitly start the server with the --enable-write-tools flag. This helps prevent accidental job executions.

Tool Area Description Read-only
list_jobs Jobs Lists jobs in a project with optional filtering
get_job Jobs Retrieves job details including options and defaults
list_executions Executions Lists executions with filtering by status or time
get_execution Executions Retrieves execution status and details
get_execution_output Executions Retrieves execution log output
run_job Jobs Executes a job with options

Job Options

When running jobs with the run_job tool, the server validates options before execution:

  • Required options must be provided (unless they have default values)
  • Enforced options must use values from the allowed list
  • Option summaries are displayed when validation fails

Example job options display:

Job Options:

  - version [REQUIRED]
      The version to deploy
      Allowed values (must be): '1.0', '1.1', '2.0'

  - environment [optional] (default: 'staging')
      Target environment
      Allowed values (suggested): 'dev', 'staging', 'prod'

  - dry_run [optional] (default: 'false')
      Run without making changes

Configuration

Environment Variable Description Default
RUNDECK_API_TOKEN API token for authentication (required)
RUNDECK_URL Rundeck server URL http://localhost:4440
RUNDECK_API_VERSION API version number 44

Support

This MCP server is an open-source project. If assistance is required, please open an issue in the repository.

Contributing

If you are interested in contributing to this project, please refer to the PRD.md for architecture decisions and implementation patterns.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rokrokss_rundeck_mcp-0.1.11.tar.gz (23.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rokrokss_rundeck_mcp-0.1.11-py3-none-any.whl (29.1 kB view details)

Uploaded Python 3

File details

Details for the file rokrokss_rundeck_mcp-0.1.11.tar.gz.

File metadata

  • Download URL: rokrokss_rundeck_mcp-0.1.11.tar.gz
  • Upload date:
  • Size: 23.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for rokrokss_rundeck_mcp-0.1.11.tar.gz
Algorithm Hash digest
SHA256 63f5124499ee4af38cd78cd80dced162599f4117ce3ea5a2960086f510a1a6b4
MD5 b543798c8e985996a59278d964fe9626
BLAKE2b-256 5e1fb5e7ace229bc7566359cb4274d0523cd1a611e30fa2b5f245ac9e5de60c0

See more details on using hashes here.

File details

Details for the file rokrokss_rundeck_mcp-0.1.11-py3-none-any.whl.

File metadata

  • Download URL: rokrokss_rundeck_mcp-0.1.11-py3-none-any.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for rokrokss_rundeck_mcp-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 26b74f964a5f832bcc98f03ff911422d0e5000589e5ba54570c944d14fe8abbc
MD5 ab4e2615a534a6fe7a0855abf6ff540b
BLAKE2b-256 75ec8e1bf1a09f3643049f3ebcfcd62fc2c628ae7abbc5a6e4366bcf1d83525a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page