mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by browserstack | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 139 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server · Summary
BrowserStack's MCP server for comprehensive testing across real devices, browsers, and AI-powered test management.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server · Use cases
- Automated testing of web applications across multiple browsers and devices
- Debugging mobile app crashes on real devices
- Generating and managing test cases with natural language
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
mcp-server · Install
Installation
Prerequisites
- Node.js version >= 18.0 (recommended v22.15.0 LTS)
- BrowserStack account with access key
Claude Desktop Configuration
Add to ~/claude_desktop_config.json:
{
"mcpServers": {
"browserstack": {
"command": "npx",
"args": ["-y", "@browserstack/mcp-server@latest"],
"env": {
"BROWSERSTACK_USERNAME": "<username>",
"BROWSERSTACK_ACCESS_KEY": "<access_key>"
}
}
}
}VSCode Configuration
Create .vscode/mcp.json:
{
"servers": {
"browserstack": {
"command": "npx",
"args": ["-y", "@browserstack/mcp-server@latest"],
"env": {
"BROWSERSTACK_USERNAME": "<username>",
"BROWSERSTACK_ACCESS_KEY": "<access_key>"
}
}
}
}Also supports one-click setup for VSCode and Cursor via browserstack.com/one-click-setup
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"]
}
}
}