Bing 검색 MCP 서버
Microsoft Bing Search API 통합을 위한 MCP(Model Context Protocol) 서버로, AI 도우미가 웹, 뉴스, 이미지 검색을 수행할 수 있도록 해줍니다.

특징
일반 정보에 대한 웹 검색
최근 이벤트 및 시기적절한 정보를 위한 뉴스 검색
시각적 콘텐츠를 위한 이미지 검색
API 남용을 방지하기 위한 속도 제한
포괄적인 오류 처리
Related MCP server: MCP Web Search Tool
요구 사항
Python 3.10 이상
Microsoft Bing 검색 API 키
MCP 호환 클라이언트(예: Claude Desktop, Cursor)
설치
이 저장소를 복제하세요
종속성 설치:
지엑스피1
구성
필요한 환경 변수를 설정하세요.
export BING_API_KEY="your-bing-api-key"
export BING_API_URL="https://api.bing.microsoft.com/" # OptionalWindows의 경우:
set BING_API_KEY=your-bing-api-key
set BING_API_URL=https://api.bing.microsoft.com/용법
서버 실행
uvx bing-search-mcpClaude를 사용하여 데스크톱 구성
Claude Desktop 구성 파일에 다음을 추가합니다(macOS에서는 ~/Library/Application Support/Claude/claude_desktop_config.json , Windows에서는 %APPDATA%\Claude\claude_desktop_config.json ):
{
"mcpServers": {
"bing-search": {
"command": "uvx",
"args": [
"/path/to/your/bing-search-mcp"
],
"env": {
"BING_API_KEY": "your-bing-api-key"
}
}
}
}
사용 가능한 도구
1. bing_웹_서치
정보, 웹사이트, 콘텐츠에 대한 일반적인 웹 검색입니다.
bing_web_search(query: str, count: int = 10, offset: int = 0, market: str = "en-US")2. 빙 뉴스 검색
뉴스기사와 최신 이벤트를 검색해 보세요.
bing_news_search(query: str, count: int = 10, market: str = "en-US", freshness: str = "Day")3. 빙_이미지_서치
이미지를 검색하세요.
bing_image_search(query: str, count: int = 10, market: str = "en-US")Bing API 키 받기
Azure 계정을 만들거나 로그인하세요
새로운 Bing 검색 리소스 만들기
리소스로 이동하여 "키 및 엔드포인트" 섹션에서 API 키를 찾으세요.
특허
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.