time vs deep-research-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | deep-research-mcp-server by ssdeanx | |
|---|---|---|
| Stars | ★ 85,748 | ★ 70 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
deep-research-mcp-server · Summary
MCP server for deep research using Google Gemini 2.5 Flash, providing iterative research capabilities with web grounding.
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
deep-research-mcp-server · Use cases
- Conducting in-depth research on complex technical topics with iterative refinement
- Generating comprehensive research reports with citations and methodology
- Integrating advanced research capabilities into AI agent workflows via MCP
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"]
}
}
}deep-research-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/ssdeanx/deep-research-mcp-server
cd deep-research-mcp-server- Install dependencies:
npm install- Set up environment variables:
Create a .env.local file with:
GEMINI_API_KEY="your_gemini_key"
GEMINI_MODEL=gemini-2.5-flash
CONCURRENCY_LIMIT=5- Build the project:
npm run build- Run as MCP server:
node --env-file .env.local dist/mcp-server.js**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"deep-research": {
"command": "node",
"args": ["--env-file", ".env.local", "dist/mcp-server.js"]
}
}
}