mcpforge vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcpforge by lorenzosaraiva | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcpforge · Summary
MCPForge generates optimized MCP servers from OpenAPI specs or documentation with AI curation and workflow planning.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcpforge · Use cases
- Rapidly create MCP servers for popular APIs like Stripe, Discord, or Notion with optimized tooling
- Transform complex REST APIs with hundreds of endpoints into focused, LLM-friendly MCP interfaces
- Maintain MCP servers with drift detection and automatic updates when upstream APIs change
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
mcpforge · Install
Install MCPForge globally:
npm install -g mcpforgeGenerate a new MCP server from an OpenAPI spec:
npx mcpforge init --optimize --workflows https://api.example.com/openapi.jsonTo use in Claude Desktop, add this to your Claude Desktop config.json:
{
"mcpServers": {
"example-api": {
"command": "node",
"args": ["./path/to/generated/server.js"]
}
}
}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"]
}
}
}