time vs deep-research
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | deep-research by u14app | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4,583 |
| 30d uses | — | — |
| Score | 77 | 56 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsKnowledge GraphProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
deep-research · Summary
An MCP server for deep research using multiple LLMs with web search capabilities and local processing.
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 · Use cases
- Academic research with LLM assistance
- Market analysis and competitive intelligence
- Content creation and knowledge synthesis
- Technical documentation generation
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 · Install
Installation
Docker Deployment
docker pull xiangfa/deep-research:latest
docker run -d --name deep-research -p 3333:3000 xiangfa/deep-researchLocal Development
git clone https://github.com/u14app/deep-research.git
cd deep-research
pnpm install
# Copy env.tpl to .env and configure your API keys
pnpm devClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"deep-research": {
"command": "node",
"args": ["path/to/deep-research/server.js"]
}
}
}