Back to MCP directory
publicPublicdnsLocal runtime

rundeck-mcp-server

一个用于将Rundeck与GenAI应用集成的模型上下文协议服务器,提供全面的Rundeck API覆盖、多种认证方法和企业级功能。

article

README

🚀 Rundeck MCP Server

Rundeck MCP Server是一个用于将Rundeck与GenAI应用程序集成的模型上下文协议(MCP)服务器,为Runbook自动化和作业调度提供支持。

🚀 快速开始

以下代码展示了如何快速启动Rundeck MCP Server:

from rundeck_mcp import RundeckMCPServer

# Initialize the server
server = RundeckMCPServer()

# Start the server
server.start()

✨ 主要特性

  • 全面覆盖Rundeck API
  • 支持多种身份验证方法
  • 具备速率限制,满足企业级使用
  • 拥有完整的错误处理和重试逻辑
  • 支持异步操作,提升性能

📦 安装指南

可以通过以下两种方式安装Rundeck MCP Server:

方式一:使用pip安装

pip install rundeck-mcp-server

方式二:从源代码安装

git clone https://github.com/asklokesh/rundeck-mcp-server.git
cd rundeck-mcp-server
pip install -e .

📚 详细文档

需要根据Rundeck API要求创建一个 .env 文件或设置环境变量。

📄 许可证

本项目采用MIT许可证,详情请参阅 LICENSE 文件。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client