time vs uipath-mcp-python
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | uipath-mcp-python by UiPath | |
|---|---|---|
| Stars | ★ 85,748 | ★ 8 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsProductivityOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
uipath-mcp-python · Summary
Python SDK for building and hosting MCP servers within UiPath automation platform.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
uipath-mcp-python · Use cases
- Creating custom MCP servers for UiPath automation workflows
- Packaging and deploying Python-based automation tools to UiPath platform
- Integrating third-party systems with UiPath through MCP protocol
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}uipath-mcp-python · Install
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"]
},
}
}