time vs fastify-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | fastify-mcp-server by NEDDL | |
|---|---|---|
| Stars | ★ 85,748 | ★ 7 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOps & Infra |
| 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.
fastify-mcp-server · Summary
High-performance MCP server built with Fastify, TypeScript, and functional programming principles.
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
fastify-mcp-server · Use cases
- Building AI agent platforms requiring secure MCP server connections
- Integrating LLMs with external tools and data sources
- Creating enterprise-grade MCP infrastructure with authentication and monitoring
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"]
}
}
}fastify-mcp-server · Install
Installation:
- Clone the repository:
git clone https://github.com/NEDDL/fastify-mcp-server.git - Navigate to the project:
cd fastify-mcp-server - Install dependencies:
pnpm install - Build the project:
pnpm build - Configure environment variables by copying
.env.exampleto.env
For Claude Desktop integration, add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"fastify-mcp-local": {
"command": "node",
"args": ["/absolute/path/to/fastify-mcp-server/dist/mcp-stdio.js"]
}
}
}