MCPWrapper vs time
Side-by-side comparison to help you pick between these two MCP servers.
MCPWrapper by jm12138 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 11 mo ago | this month |
MCPWrapper · Summary
MCPWrapper is a Python tool that wraps any Python package as an MCP server without code modification.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
MCPWrapper · Use cases
- Quickly exposing existing Python libraries as MCP services without refactoring code
- Creating MCP servers for internal tools by wrapping utility modules
- Converting standalone Python packages to work with MCP-compatible clients
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
MCPWrapper · Install
pip install git+https://github.com/jm12138/MCPWrapperTo use with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"json-mcp": {
"command": "python",
"args": ["-m", "mcpwrapper", "--server_name", "json_mcp_server", "--module_name", "json", "--transport", "sse", "--listen", "0.0.0.0", "--port", "8000"]
}
}
}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"]
}
}
}