create-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
create-mcp by fefergrgrgrg | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 12 mo ago | this month |
create-mcp · Summary
CLI tool to create and deploy MCP servers to Cloudflare Workers using TypeScript functions with JSDoc comments.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
create-mcp · Use cases
- Create custom MCP tools for Cursor agents without maintaining local server infrastructure
- Quickly prototype and deploy API-based MCP servers to Cloudflare Workers
- Convert existing API functionality into MCP tools using TypeScript functions
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
create-mcp · Install
Installation
- Install Wrangler CLI and log in with your Cloudflare account:
``bash npm install -g wrangler wrangler login ``
- Create a new MCP server:
``bash bun create mcp # or with a specific name bun create mcp --name <server-name> ``
- Deploy the server:
``bash cd <server-name> bun run deploy ``
- The CLI will automatically add it to Claude Desktop and copy the command to your clipboard for use in Cursor.
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"]
}
}
}