time vs mcp-framework
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-framework by QuantGeekDev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 916 |
| 30d uses | — | — |
| Score | 77 | 54 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-framework · Summary
TypeScript framework for building MCP servers with automatic discovery, type safety, and multiple transport options.
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-framework · Use cases
- Building custom MCP servers for AI assistants with specific domain functionality
- Creating cryptocurrency tipping services like tip.md
- Developing enterprise tools with secure authentication and multiple transport options
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-framework · Install
Installation
# Install the framework globally
npm install -g mcp-framework
# Create a new MCP server project
mcp create my-mcp-server
# Navigate to your project
cd my-mcp-server
# Your server is ready to use!Using with Claude Desktop
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"my-mcp-server": {
"command": "node",
"args": ["/absolute/path/to/my-mcp-server/dist/index.js"]
}
}
}