anysearch-mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
anysearch-mcp-server by anysearch-ai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 221 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | — | TypeScript |
| Last commit | this month | this month |
anysearch-mcp-server · Summary
Unified real-time search MCP server supporting web, domain-specific, batch search and content extraction.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
anysearch-mcp-server · Use cases
- Real-time information retrieval for AI assistants across multiple domains
- Batch processing multiple search queries simultaneously for efficiency
- Content analysis and summarization from specific web pages or documents
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
anysearch-mcp-server · Install
Streamable HTTP (Recommended)
For Claude Desktop (2025.6+):
{
"mcpServers": {
"anysearch": {
"type": "streamable-http",
"url": "https://api.anysearch.com/mcp",
"headers": {
"Authorization": "Bearer ${ANYSEARCH_API_KEY}"
}
}
}
}For stdio transport (using mcp-remote):
{
"mcpServers": {
"anysearch": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.anysearch.com/mcp",
"--header",
"Authorization: Bearer ${ANYSEARCH_API_KEY}"
]
}
}
}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"]
}
}
}