mcp-email-client vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-email-client by gamalan | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
mcp-email-client · Summary
Python-based email client MCP server for managing multiple email configurations and operations.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-email-client · Use cases
- Automating email responses through AI assistants
- Managing multiple email accounts from a single interface
- Integrating email operations into AI-powered workflows
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
mcp-email-client · Install
Installation
- Clone the repository:
git clone https://github.com/gamalan/mcp-email-client.git
cd mcp-email-client- Install uv:
**Linux/MacOS**
curl -LsSf https://astral.sh/uv/install.sh | sh**Windows**
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- Install dependencies:
uv syncConfiguration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mcp_email_client": {
"command": "uv",
"args": [
"run",
"--directory",
"D:\\Project\\RepoPath",
"mcp_email_client"
]
}
}
}Or in VSCode:
{
"servers": {
"any-name": {
"type": "stdio",
"command": "/path/to/uv",
"args": [
"run",
"--directory",
"/path/to/repo",
"run_mcp_server.py",
]
}
}
}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"]
}
}
}