Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bing-search": {
"args": [
"-y",
"bing-cn-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
No description provided.
This server is thin — proceed with caution. Help improve this page →
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
MCP Security Weekly
Get CVE alerts and security updates for Bing Cn Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
让 AI 助手(如 Claude)能够使用必应搜索引擎实时获取网络信息的工具。
MCP(Model Context Protocol)是一个让 AI 助手能够调用外部工具的协议。这个项目提供了一个必应搜索工具,让 AI 可以帮你搜索网络信息并返回结果。
根据你的操作系统,找到并打开 Claude Desktop 的配置文件:
Windows 用户:
%AppData%\Claude\claude_desktop_config.json
直接复制上面的路径到文件资源管理器地址栏,然后用记事本打开 claude_desktop_config.json 文件。
macOS 用户:
~/Library/Application Support/Claude/claude_desktop_config.json
在访达中按 Cmd + Shift + G,粘贴上面的路径,然后用文本编辑器打开。
在配置文件中添加以下内容(如果文件是空的,直接粘贴;如果已有内容,在 mcpServers 部分添加):
{
"mcpServers": {
"bing-search": {
"command": "npx",
"args": [
"-y",
"bing-cn-mcp"
]
}
}
}
注意,windows下,你应该这样配置:
{
"mcpServers": {
"bing-search": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"bing-cn-mcp"
]
}
}
}
如果配置文件中已经有其他 MCP 服务器,应该像这样:
{
"mcpServers": {
"existing-server": {
"command": "...",
"args": ["..."]
},
"bing-search": {
"command": "npx",
"args": [
"-y",
"bing-cn-mcp"
]
}
}
}
完全退出 Claude Desktop(不是最小化,要完全关闭),然后重新打开。
在 Claude 中,你可以这样提问:
"帮我搜索一下人工智能的最新进展"
"搜索 Python 异步编程教程"
Claude 会自动调用必应搜索工具并返回结果。
这个 MCP 服务器提供了两个工具:
使用必应搜索引擎搜索网络信息。
参数说明:
query (必填): 搜索关键词,例如 "人工智能"count (可选): 返回多少条结果,默认 10 条,最多 50 条offset (可选): 从第几条结果开始,用于翻页,默认 0返回内容: 搜索结果包括:
抓取并提取网页的文本内容(自动跳过无法访问的网站)。
参数说明:
url (必填): 要抓取的网页地址返回内容:
黑名单网站(这些网站会被自动跳过):
提问: "搜索一下 TypeScript 教程"
AI 会调用: bing_search,参数为 { "query": "TypeScript 教程" }
返回结果:
搜索关键词: TypeScript 教程
找到约 1,234,567 条结果
返回前 10 条结果:
================================================================================
[1] TypeScript 中文手册 - 官方文档
链接: https://www.tslang.cn/docs/handbook/basic-types.html
摘要: TypeScript 是 JavaScript 的超集,为其添加了类型系统...
[2] TypeScript 入门教程 - 阮一峰
链接: https://ts.xcatliu.com/
摘要: 从 JavaScript 程序员的角度总结思考,循序渐进讲解 TypeScript...
...
提问: "搜索 Node.js 性能优化,给我 20 条结果"
AI 会调用: bing_search,参数为 { "query": "Node.js 性能优化", "count": 20 }
提问: "搜索 React Hooks 教程,从第 11 条结果开始显示"
AI 会调用: bing_search,参数为 { "query": "React Hooks 教程", "offset": 10 }
提问: "帮我抓取这个网页的内容 https://example.com/article"
AI 会调用: crawl_webpage,参数为 { "url": "https://example.com/article" }
本项目使用以下技术栈构建:
@modelcontextprotocol/sdk): 实现 MCP 协议bingcnmcp/
├── src/
│ ├── index.ts # MCP 服务器入口
│ ├── bingSearch.ts # 必应搜索实现
│ ├── crawler.ts # 网页抓取实现
│ ├── parser.ts # HTML 解析器
│ ├── blacklist.ts # 黑名单配置
│ └── types.ts # 类型定义
├── build/ # 编译输出
├── package.json
└── tsconfig.json
这是正常的,部分网站(如知乎、小红书等)因为访问限制或反爬虫机制被加入了黑名单。搜索结果中会显示这些网站的链接,但不会自动抓取内容。
确保已经安装了 Node.js(推荐 18 或更高版本)。安装后重启电脑或命令行窗口。
下载 Node.js: https://nodejs.org/