Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bing-search": {
"args": [
"--from",
"mcp-bing-scraper",
"bing-search-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
免费的 Bing 搜索 MCP 服务器,通过抓取 Bing 搜索结果提供搜索功能。无需 API key,完全免费!
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-bing-scraper' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-bing-scraper against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for io.github.iridite/bing-search-free and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
免费的 Bing 搜索 MCP 服务器,通过抓取 Bing 搜索结果提供搜索功能。无需 API key,完全免费!
| 特性 | mcp-bing-scraper (本项目) | bing-search-mcp | 其他搜索 MCP |
|---|---|---|---|
| 💰 费用 | 完全免费 | 需要 Bing API Key (付费) | 大多需要 API Key |
| 🔑 API Key | 不需要 | 需要 | 需要 |
| 🌐 语言支持 | 中英文自动检测 | 英文为主 | 视具体实现 |
| ⚡ 安装难度 | 一行命令 | 需要配置环境变量 | 需要配置 |
| 🎯 使用场景 | 个人开发、学习、原型 | 商业应用 | 商业应用 |
配置后,uvx 会在首次使用时自动安装包,无需手动安装。
# 使用 uvx (推荐)
uvx --from mcp-bing-scraper bing-search-mcp
# 或使用 pip
pip install mcp-bing-scraper
git clone https://github.com/iridite/bing-search-mcp.git
cd bing-search-mcp
uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
uv pip install -e .
编辑 ~/.claude/mcp.json 或项目根目录的 .mcp.json:
{
"mcpServers": {
"bing-search": {
"command": "uvx",
"args": ["--from", "mcp-bing-scraper", "bing-search-mcp"]
}
}
}
注意: 包名是 mcp-bing-scraper,但可执行文件名是 bing-search-mcp。
或使用 CLI 命令自动配置:
claude mcp add bing-search -- uvx --from mcp-bing-scraper bing-search-mcp
编辑配置文件:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"bing-search": {
"command": "uvx",
"args": ["--from", "mcp-bing-scraper", "bing-search-mcp"]
}
}
}
在 Cursor 设置中添加 MCP 服务器配置(参考 Claude Desktop 配置)。
配置完成后,重启客户端并验证:
# Claude Code 用户
claude mcp list
# 或在对话中测试
# 输入: 搜索 "Python 教程"
搜索 "Python 教程"
搜索 "机器学习" 返回 20 条结果
用英文搜索 "artificial intelligence"
用户: 现在地球上发生的战争有哪些?
AI 使用 bing_search 工具:
{
"query": "current wars 2026",
"count": 10,
"language": "en-US"
}
返回结果:
🔍 找到 10 条搜索结果:
**1. Ukraine-Russia War: Latest Updates 2026**
🔗 https://www.bbc.com/news/world-europe-...
📝 The ongoing conflict between Ukraine and Russia continues...
**2. Middle East Conflicts 2026**
🔗 https://www.aljazeera.com/news/...
📝 Analysis of current military conflicts in the Middle East region...
...
搜索网络内容。
参数:
query (string, 必需): 搜索查询关键词count (integer, 可选): 返回结果数量,默认 10,范围 1-50language (string, 可选): 语言偏好
auto (默认): 自动检测查询语言zh-CN: 强制使用中文搜索en-US: 强制使用英文搜索返回格式:
[
{
"title": "搜索结果标题",
"url": "https://example.com",
"snippet": "搜索结果摘要..."
}
]
如果需要修改超时时间,可以 fork 项目并修改 server.py 中的 timeout 参数:
self.client = httpx.AsyncClient(
timeout=60.0, # 修改为 60 秒
...
)
修改 headers 中的 User-Agent 以适应特定需求。
可能原因: 配置中使用了错误的可执行文件名
错误配置 ❌:
{
"command": "uvx",
"args": ["mcp-bing-scraper"] // 这是包名,不是可执行文件名
}
正确配置 ✅:
{
"command": "uvx",
"args": ["--from", "mcp-bing-scraper", "bing-search-mcp"]
}
解决方案:
args 是否正确claude mcp list 验证服务器是否加载可能原因: