bing-search-mcp vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
bing-search-mcp by leehanchung | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 79 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 76 |
| 官方 | — | ✓ |
| 分类 | 搜索AI / LLM 工具 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 14 个月前 | 本月 |
bing-search-mcp · 概述
通过Bing搜索API提供网页、新闻和图片搜索功能的MCP服务器。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
bing-search-mcp · 使用场景
- 使AI助手能够执行实时网页搜索获取最新信息
- 检索最新新闻文章进行及时信息收集
- 通过Bing的图片搜索功能查找和处理视觉内容
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
bing-search-mcp · 安装
安装
- 克隆仓库
- 安装依赖项:
`` uv venv source .venv/bin/activate # Windows上: .venv\Scripts\activate uv pip install -e . ``
配置
设置所需的环境变量:
export BING_API_KEY="your-bing-api-key"
export BING_API_URL="https://api.bing.microsoft.com/" # 可选Claude Desktop配置
将以下内容添加到您的Claude Desktop配置文件中:
{
"mcpServers": {
"bing-search": {
"command": "uvx",
"args": [
"/path/to/your/bing-search-mcp"
],
"env": {
"BING_API_KEY": "your-bing-api-key"
}
}
}
}fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}