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 | — | — |
| Score | 40 | 76 |
| Official | — | ✓ |
| Categories | SearchAI / LLM Tools | Web ScrapingAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this 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
- Clone the repository
- 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/" # OptionalClaude 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-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}