MCP Catalogs
Home

bing-search-mcp vs fetch

Side-by-side comparison to help you pick between these two MCP servers.

bing-search-mcp
by leehanchung
fetch
by modelcontextprotocol
Stars★ 79★ 85,748
30d uses
Score4076
Official
Categories
SearchAI / LLM Tools
Web ScrapingAI / LLM ToolsProductivity
LanguagePythonTypeScript
Last commit14 mo agothis month

bing-search-mcp · Summary

MCP server providing web, news and image search capabilities via Bing Search API.

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

bing-search-mcp · Use cases

  • Enable AI assistants to perform real-time web searches for current information
  • Retrieve the latest news articles for timely information gathering
  • Find and process visual content through Bing's image search capabilities

fetch · Use cases

  • LLMs reading news articles and blogs
  • Content analysis of web pages
  • Retrieving information from public websites
  • Chunked reading of large web documents

bing-search-mcp · Install

Installation

  1. Clone the repository
  2. Install dependencies:

`` uv venv source .venv/bin/activate # On Windows: .venv\Scripts\activate uv pip install -e . ``

Configuration

Set the required environment variables:

export BING_API_KEY="your-bing-api-key"
export BING_API_URL="https://api.bing.microsoft.com/"  # Optional

Claude Desktop Configuration

Add the following to your Claude Desktop configuration file:

{
  "mcpServers": {
    "bing-search": {
      "command": "uvx",
      "args": [
        "/path/to/your/bing-search-mcp"
      ],
      "env": {
        "BING_API_KEY": "your-bing-api-key"
      }
    }
  }
}

fetch · Install

Installation

**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:

uvx mcp-server-fetch

**Using PIP** Install via pip:

pip install mcp-server-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.