
bing-search-mcp
by leehanchung·★ 79·Score 40
MCP server providing web, news and image search capabilities via Bing Search API.
Overview
This is a well-structured MCP server that integrates Microsoft Bing Search API functionality into MCP-compatible clients. It provides three main search capabilities: general web search, news search, and image search. The server includes proper rate limiting and comprehensive error handling. The implementation is clean with clear separation of concerns for each search type.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this server when you need Bing-specific search functionality and your AI assistant requires access to web, news, or image search capabilities.
When NOT to choose this
Don't choose this if you need search results from other providers like Google or DuckDuckGo, or if you require search capabilities beyond what Bing offers.
Tools this server exposes
3 tools extracted from the READMEbing_web_searchbing_web_search(query: str, count: int = 10, offset: int = 0, market: str = "en-US")General web search for information, websites, and content.
bing_news_searchbing_news_search(query: str, count: int = 10, market: str = "en-US", freshness: str = "Day")Search for news articles and current events.
bing_image_searchbing_image_search(query: str, count: int = 10, market: str = "en-US")Search for images.
Comparable tools
Installation
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"
}
}
}
}Compare bing-search-mcp with
Last updated · Auto-generated from public README + GitHub signals.