time vs mcp-server-email
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-server-email by Shy2593666979 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | CommunicationFile SystemProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 13 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-email · Summary
MCP server for sending emails with attachments and searching files in directories.
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-server-email · Use cases
- Automating email sending from LLM-based applications
- Searching for specific attachments in directories
- Integrating email functionality into AI-powered workflows
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"]
}
}
}mcp-server-email · Install
Installation
- Install dependencies:
pip install pydantic python-dotenv- Create an
email.jsonfile with SMTP server configurations.
- Run the server:
python -m mcp_email_server (--dir /path/to/attachment/directory)For Claude Desktop, add to your settings:
{
"mcpServers": {
"email": {
"command": "python",
"args": [
"path/to/mcp_server_email",
"--dir",
"/path/to/attachment/directory"
],
"env": {
"SENDER": "your_email@gmail.com",
"PASSWORD": "your_app_password"
}
}
}
}