MCP Catalogs
Home

uipath-mcp-python

by UiPath·8·Score 41

Python SDK for building and hosting MCP servers within UiPath automation platform.

developer-toolsproductivityops-infra
6
Forks
17
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Creating custom MCP servers for UiPath automation workflows
you:Packaging and deploying Python-based automation tools to UiPath platform
you:Integrating third-party systems with UiPath through MCP protocol
you:How do I authenticate with UiPath?
you:Can I package MCP servers written in other languages?

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

npx @modelcontextprotocol/server-pymcp-server-python

Installation

Installation

Install the SDK via pip:

pip install uipath-mcp

Or using uv:

uv add uipath-mcp

Configuration

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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.