The Rundeck Model Context Protocol (MCP) Server exposes Rundeck's documentation, APIs, and capabilities to AI assistants through the Model Context Protocol standard. This document covers technical capabilities, architecture, and features of the MCP server implementation.
No Node.js required — only Docker. The server is also published as the rundeck/mcp image, exposed the same way over stdio.
For Cursor, Claude Desktop, or any client using an mcpServers JSON block:
{
"mcpServers": {
"rundeck-mcp": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "RUNDECK_URL=https://your-rundeck-instance.example.com",
"-e", "RUNDECK_TOKEN=your-rundeck-api-token-here",
"rundeck/mcp-ci:main"
]
}
}
}
For Claude Code, add via the CLI:
claude mcp add rundeck-mcp -- docker run -i --rm -e RUNDECK_URL=https://your-rundeck-instance.example.com -e RUNDECK_TOKEN=your-rundeck-api-token-here rundeck/mcp-ci:main
Content type
Image
Digest
sha256:19e86328b…
Size
71.1 MB
Last updated
9 days ago
docker pull rundeck/mcp-ci