time vs gemsuite-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | gemsuite-mcp by PV-Bhat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 29 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 14 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
gemsuite-mcp · Summary
Professional Gemini API integration for MCP hosts with intelligent model selection and advanced file handling.
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
gemsuite-mcp · Use cases
- Document analysis with efficient token usage through intelligent model selection
- Complex problem solving with step-by-step reasoning capabilities
- Automated file processing for various document types with batch support
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"]
}
}
}gemsuite-mcp · Install
Installation
Option 1: Smithery.ai (Recommended)
# Install directly via Smithery CLI
npx -y @smithery/cli@latest install @PV-Bhat/gemsuite-mcp --client claudeOption 2: Manual Installation
# Clone the repository
git clone https://github.com/PV-Bhat/gemsuite-mcp.git
cd gemsuite-mcp
# Install dependencies
npm install
# Set your Gemini API key
echo "GEMINI_API_KEY=your_api_key_here" > .env
# Build the project
npm run build
# Start the server
npm startClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"gemsuite-mcp": {
"command": "node",
"args": ["/path/to/gemsuite-mcp/dist/index.js"]
}
}
}