time vs token-enhancer
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | token-enhancer by xelektron | |
|---|---|---|
| Stars | ★ 85,748 | ★ 64 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
token-enhancer · Summary
MCP server that strips web pages to clean text, reducing token usage by 86-99%.
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
token-enhancer · Use cases
- Reduce token usage when web pages are included in AI agent prompts
- Clean up web content for analysis without ads and navigation elements
- Batch fetch multiple URLs efficiently with cached results
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"]
}
}
}token-enhancer · Install
pip install xelektron-token-enhancerAs an MCP Server (Claude Desktop): Add to your config file:
{
"mcpServers": {
"token-enhancer": {
"command": "python3",
"args": ["-m", "mcp_server"],
"env": {
"REQUESTS_CA_BUNDLE": "/etc/ssl/certs/ca-certificates.crt"
}
}
}
}Remove the env block on macOS/Windows.