带引擎自动切换的研究工作流
何时使用: 你的研究 agent 使用单一引擎时频繁被限流。
步骤
-
搜索search query="..." engines=auto.✓ 已复制→ 从响应最快的引擎获取结果
-
迭代Filter by date, re-search.✓ 已复制→ 缩小结果集
结果: 研究工作流不再受单一引擎瓶颈限制。
作者 Aas-ee · Aas-ee/open-webSearch
一个 MCP 背后整合多个搜索引擎——当某个引擎被限流时自动切换 Google、Bing、DuckDuckGo 和 Brave。
Open WebSearch 在一个 MCP 下聚合了多个搜索引擎,遇到限流时自动切换。适合单一引擎可靠性不足的 agent 场景。
%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"open-web-search-mcp": {
"command": "npx",
"args": [
"-y",
"open-websearch"
]
}
}
}
打开 Claude Desktop → Settings → Developer → Edit Config。保存后重启应用。
{
"mcpServers": {
"open-web-search-mcp": {
"command": "npx",
"args": [
"-y",
"open-websearch"
]
}
}
}
Cursor 使用与 Claude Desktop 相同的 mcpServers 格式。项目级配置优先于全局。
{
"mcpServers": {
"open-web-search-mcp": {
"command": "npx",
"args": [
"-y",
"open-websearch"
]
}
}
}
点击 Cline 侧栏中的 MCP Servers 图标,然后选 "Edit Configuration"。
{
"mcpServers": {
"open-web-search-mcp": {
"command": "npx",
"args": [
"-y",
"open-websearch"
]
}
}
}
格式与 Claude Desktop 相同。重启 Windsurf 生效。
{
"mcpServers": [
{
"name": "open-web-search-mcp",
"command": "npx",
"args": [
"-y",
"open-websearch"
]
}
]
}
Continue 使用服务器对象数组,而非映射。
{
"context_servers": {
"open-web-search-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"open-websearch"
]
}
}
}
}
加入 context_servers。Zed 保存后热重载。
claude mcp add open-web-search-mcp -- npx -y open-websearch
一行命令搞定。用 claude mcp list 验证,claude mcp remove 卸载。
何时使用: 你的研究 agent 使用单一引擎时频繁被限流。
结果: 研究工作流不再受单一引擎瓶颈限制。
此处负责搜索,Firecrawl 负责深度爬取
| 工具 | 输入参数 | 何时调用 | 成本 |
|---|---|---|---|
| search | (见文档) | 多引擎搜索 | 1 次调用 |
| fetch | (见文档) | 将结果页面以 Markdown 形式抓取 | 1 次调用 |
所有引擎均被限流等待后重试;或添加 Brave Search API 等基于 API key 的引擎
| 替代方案 | 何时用它替代 | 权衡 |
|---|---|---|
| exa-mcp | 你需要针对 LLM 优化的搜索 | 免费额度以上需付费 |