time vs mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp by vuetifyjs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| 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.
mcp · Summary
Vuetify MCP server provides Vuetify component documentation and API information to AI assistants via the Model Context Protocol.
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 · Use cases
- Generating Vuetify components with proper props and attributes in AI assistants
- Creating common UI layouts following Vuetify best practices
- Accessing Vuetify documentation, installation guides, and release notes without leaving IDEs
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"]
}
}
}mcp · Install
Quick Start
Hosted HTTP Server (Easiest)
# Claude Code
claude mcp add --transport http vuetify-mcp https://mcp.vuetifyjs.com/mcpLocal Installation
# Start the Vuetify MCP server
npx -y @vuetify/mcpClaude Desktop Configuration
{
"mcpServers": {
"vuetify-mcp": {
"command": "npx",
"args": ["-y", "@vuetify/mcp"]
}
}
}Or use mcp-remote for the hosted server:
{
"mcpServers": {
"vuetify-mcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.vuetifyjs.com/mcp"]
}
}
}