uipath-mcp-python
by UiPath·★ 8·Score 41
Python SDK for building and hosting MCP servers within UiPath automation platform.
Overview
The UiPath MCP Python SDK enables developers to create, package, and deploy MCP servers directly within the UiPath automation platform. It provides a comprehensive CLI for initializing projects, debugging, packaging servers as .nupkg files, and publishing to UiPath Orchestrator. The SDK supports both Python-based servers and allows integration of binary servers written in other languages like Go.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this SDK if you're working within the UiPath ecosystem and need to create MCP servers that integrate with UiPath workflows.
When NOT to choose this
Avoid this if you need MCP servers for platforms other than UiPath, as it creates vendor-specific dependencies.
Comparable tools
Installation
Installation
Install the SDK via pip:
pip install uipath-mcpOr using uv:
uv add uipath-mcpConfiguration
Create an mcp.json file to define your servers:
{
"servers": {
"my-python-server": {
"type": "stdio",
"command": "python",
"args": ["server.py"]
},
}
}FAQ
- How do I authenticate with UiPath?
- Use the command `uipath auth` which opens a browser for authentication and creates/updates your `.env` file with proper credentials.
- Can I package MCP servers written in other languages?
- Yes, the SDK allows you to pack binary servers written in languages like Go. Refer to the documentation for details.
Compare uipath-mcp-python with
Last updated · Auto-generated from public README + GitHub signals.