webclaw vs time
Side-by-side comparison to help you pick between these two MCP servers.
webclaw by kuroko1t | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
webclaw · Summary
WebClaw is a Chrome extension-based MCP server that allows AI assistants to control real Chrome browser sessions through a WebSocket connection.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
webclaw · Use cases
- Automating web testing and QA workflows using AI assistants
- Cross-platform web scraping with existing authenticated sessions
- AI-powered UI automation and task completion in web applications
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
webclaw · Install
Installation
1. Configure your MCP client
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"webclaw": {
"command": "npx",
"args": ["-y", "webclaw-mcp"]
}
}
}Other clients
# Claude Code
claude mcp add webclaw -- npx -y webclaw-mcp
# Cursor / VS Code / Windsurf
# Add to respective MCP config files:
{
"mcpServers": {
"webclaw": {
"command": "npx",
"args": ["-y", "webclaw-mcp"]
}
}
}2. Load Chrome Extension
- Download the latest [webclaw-extension.zip](https://github.com/kuroko1t/webclaw/releases/latest)
- Open
chrome://extensions/→ enable **Developer mode** - Click **Load unpacked** → select the
dist/folder
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"]
}
}
}