computer-use-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
computer-use-mcp by domdomegg | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 256 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
computer-use-mcp · Summary
An MCP server that gives Claude AI complete control of your computer for desktop automation tasks.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
computer-use-mcp · Use cases
- Automating desktop background changes and system settings
- Website interaction through keyboard navigation using Rango extension
- Cross-platform desktop automation with visual recognition
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
computer-use-mcp · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"computer-use": {
"command": "npx",
"args": [
"-y",
"computer-use-mcp"
]
}
}
}Claude Code
claude mcp add --scope user --transport stdio computer-use -- npx -y computer-use-mcpCursor
Create .cursor/mcp.json:
{
"mcpServers": {
"computer-use": {
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}Cline
Via marketplace or add to MCP configuration:
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}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"]
}
}
}