A Model Context Protocol (MCP) server for Microsoft Bing Search API integration, allowing AI assistants to perform web, news, and image searches. - Web search for general information - News search for recent events and timely information - Image search for visual content - Rate limiting to prevent API abuse - Comprehensive error handling - Python 3.10 or higher - Microsoft Bing Search API key - MC
Add this skill
npx mdskills install leehanchung/bing-search-mcpWell-documented MCP server with three useful Bing search tools and clear setup instructions
A Model Context Protocol (MCP) server for Microsoft Bing Search API integration, allowing AI assistants to perform web, news, and image searches.

uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e .
Set the required environment variables:
export BING_API_KEY="your-bing-api-key"
export BING_API_URL="https://api.bing.microsoft.com/" # Optional
For Windows:
set BING_API_KEY=your-bing-api-key
set BING_API_URL=https://api.bing.microsoft.com/
uvx bing-search-mcp
Add the following to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"bing-search": {
"command": "uvx",
"args": [
"/path/to/your/bing-search-mcp"
],
"env": {
"BING_API_KEY": "your-bing-api-key"
}
}
}
}

General web search for information, websites, and content.
bing_web_search(query: str, count: int = 10, offset: int = 0, market: str = "en-US")
Search for news articles and current events.
bing_news_search(query: str, count: int = 10, market: str = "en-US", freshness: str = "Day")
Search for images.
bing_image_search(query: str, count: int = 10, market: str = "en-US")
Install via CLI
npx mdskills install leehanchung/bing-search-mcpBing Search MCP Server is a free, open-source AI agent skill. A Model Context Protocol (MCP) server for Microsoft Bing Search API integration, allowing AI assistants to perform web, news, and image searches. - Web search for general information - News search for recent events and timely information - Image search for visual content - Rate limiting to prevent API abuse - Comprehensive error handling - Python 3.10 or higher - Microsoft Bing Search API key - MC
Install Bing Search MCP Server with a single command:
npx mdskills install leehanchung/bing-search-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Bing Search MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.