anysearch-mcp-server vs time
并排对比,帮你在这两个 MCP server 之间做选择。
anysearch-mcp-server by anysearch-ai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 221 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 77 |
| 官方 | — | ✓ |
| 分类 | 搜索AI / LLM 工具效率工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | — | TypeScript |
| 最近提交 | 本月 | 本月 |
anysearch-mcp-server · 概述
AnySearch MCP Server 是一个统一的实时搜索引擎,支持通用搜索、垂直领域搜索和批量查询。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
anysearch-mcp-server · 使用场景
- AI 助手在多个领域进行实时信息检索
- 批量处理多个搜索查询以提高效率
- 分析并总结特定网页或文档的内容
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
anysearch-mcp-server · 安装
流式 HTTP (推荐)
对于 Claude Desktop (2025.6+):
{
"mcpServers": {
"anysearch": {
"type": "streamable-http",
"url": "https://api.anysearch.com/mcp",
"headers": {
"Authorization": "Bearer ${ANYSEARCH_API_KEY}"
}
}
}
}对于 stdio 传输(使用 mcp-remote):
{
"mcpServers": {
"anysearch": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.anysearch.com/mcp",
"--header",
"Authorization: Bearer ${ANYSEARCH_API_KEY}"
]
}
}
}time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}