MCP Catalogs
首页

bing-search-mcp vs fetch

并排对比,帮你在这两个 MCP server 之间做选择。

bing-search-mcp
by leehanchung
fetch
by modelcontextprotocol
Stars★ 79★ 85,748
30天用量
综合分4076
官方
分类
搜索AI / LLM 工具
网页抓取AI / LLM 工具效率工具
实现语言PythonTypeScript
最近提交14 个月前本月

bing-search-mcp · 概述

通过Bing搜索API提供网页、新闻和图片搜索功能的MCP服务器。

fetch · 概述

一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。

bing-search-mcp · 使用场景

  • 使AI助手能够执行实时网页搜索获取最新信息
  • 检索最新新闻文章进行及时信息收集
  • 通过Bing的图片搜索功能查找和处理视觉内容

fetch · 使用场景

  • 大模型阅读新闻文章和博客
  • 网页内容分析
  • 从公共网站检索信息
  • 分块读取大型网页文档

bing-search-mcp · 安装

安装

  1. 克隆仓库
  2. 安装依赖项:

`` 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_fetch

Claude桌面配置

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。