time vs ebook-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | ebook-mcp by onebirdrocks | |
|---|---|---|
| Stars | ★ 85,748 | ★ 366 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | File SystemAI / 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.
ebook-mcp · Summary
A Python MCP server for processing EPUB and PDF files with natural language queries.
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
ebook-mcp · Use cases
- Smart library management with natural language queries to find books by topic
- Interactive reading experience with AI-powered conversations about book content
- Active learning support through quizzes and exercises based on book material
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"]
}
}
}ebook-mcp · Install
# Clone the repository
git clone https://github.com/onebirdrocks/ebook-mcp.git
cd ebook-mcp
# Install dependencies using uv
uv pip install -e .
# Start the MCP server in development mode
uv run mcp dev src/ebook_mcp/main.py
# Or start in production mode
uv run src/ebook_mcp/main.pyFor Claude Desktop configuration:
{
"ebook-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/ebook-mcp/src/ebook_mcp/",
"run",
"main.py"
]
}
}