================== /// MCP /// /// BIN /// ================== [server:online] [protocol:ready]
bing-search-mcp
by leehanchung
MCP Server for integrating Microsoft Bing Web / News / Image Search into AI assistants.
53
4
Open Source01
bing_web_search
General web search for information, websites, and content.
02
bing_news_search
Search for news articles and current events.
03
bing_image_search
Search for images.
Installation
1. Clone the repository
git clone https://github.com/leehanchung/bing-search-mcp.git
cd bing-search-mcp
2. Create and activate a Python 3.9+ virtual environment (recommended)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
3. Install server dependencies
pip install -r requirements.txt
4. Provide your Bing Search API credentials (required by the underlying Azure/Bing service)
export BING_SEARCH_API_KEY=YOUR_KEY_HERE
# Optional – override default bind address/port
export MCP_HOST=0.0.0.0
export MCP_PORT=8080
5. Launch the MCP server
python -m mcp.server --host ${MCP_HOST:-0.0.0.0} --port ${MCP_PORT:-8080}
6. Verify
curl http://localhost:8080/.well-known/mcp/manifest.json
# You should receive the tool manifest that advertises the "bing-search" tool.
Documentation
License: MIT License
Updated 7/30/2025