time vs vurb.ts
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | vurb.ts by vinkius-labs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 251 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
vurb.ts · Summary
Production-grade TypeScript framework for building MCP servers with presenters, FSM gating, and semantic routing.
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
vurb.ts · Use cases
- Building secure MCP servers with PII redaction and data governance
- Creating workflow-gated tools with finite state machines
- Generating MCP servers from existing OpenAPI, Prisma, or n8n infrastructure
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"]
}
}
}vurb.ts · Install
# Create a new Vurb server
npx @vurb/core create my-server
cd my-server && npm run devFor Claude Desktop configuration, add to claude_desktop_config.json:
{
"mcpServers": {
"vurb": {
"command": "npx",
"args": ["@vurb/core", "start"]
}
}
}