Back to MCP directory
publicPublicdnsLocal runtime

uipath-mcp-server

UiPath MCP服务器,用于将UiPath RPA平台与GenAI应用程序集成,提供全面的API覆盖、多种认证方法和企业级功能。

article

README

🚀 UiPath MCP Server

这是一个用于将UiPath与GenAI应用集成的模型上下文协议(MCP)服务器,可助力实现自动化流程与人工智能的融合。

🚀 快速开始

from uipath_mcp import UipathMCPServer

# 初始化服务器
server = UipathMCPServer()

# 启动服务器
server.start()

✨ 主要特性

  • 全面覆盖UiPath API
  • 支持多种认证方式
  • 具备速率限制,适合企业级使用
  • 完善的错误处理和重试逻辑
  • 支持异步操作,提升性能

📦 安装指南

可使用以下命令通过pip安装:

pip install uipath-mcp-server

也可以从源代码进行安装:

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

📚 详细文档

需根据UiPath 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