time vs lc2mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | lc2mcp by xiaotonng | |
|---|---|---|
| Stars | ★ 85,748 | ★ 69 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 4 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
lc2mcp · Summary
A lightweight adapter that converts existing LangChain tools into FastMCP tools in one line of code.
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
lc2mcp · Use cases
- Converting existing LangChain tools to serve MCP clients like Claude and Cursor
- Building MCP servers quickly using LangChain's rich ecosystem of 1000+ community tools
- Injecting authentication and user context into tools through MCP context
- Handling tool name conflicts and organizing tools with prefixes
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"]
}
}
}lc2mcp · Install
pip install lc2mcpFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"lc2mcp-example": {
"command": "python",
"args": ["-m", "fastmcp", "run", "/path/to/your/script.py"]
}
}
}