bing-search-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
bing-search-mcp by leehanchung | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 79 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | 搜索AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 14 个月前 | 本月 |
bing-search-mcp · 概述
通过Bing搜索API提供网页、新闻和图片搜索功能的MCP服务器。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
bing-search-mcp · 使用场景
- 使AI助手能够执行实时网页搜索获取最新信息
- 检索最新新闻文章进行及时信息收集
- 通过Bing的图片搜索功能查找和处理视觉内容
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
bing-search-mcp · 安装
安装
- 克隆仓库
- 安装依赖项:
`` uv venv source .venv/bin/activate # Windows上: .venv\Scripts\activate uv pip install -e . ``
配置
设置所需的环境变量:
export BING_API_KEY="your-bing-api-key"
export BING_API_URL="https://api.bing.microsoft.com/" # 可选Claude Desktop配置
将以下内容添加到您的Claude Desktop配置文件中:
{
"mcpServers": {
"bing-search": {
"command": "uvx",
"args": [
"/path/to/your/bing-search-mcp"
],
"env": {
"BING_API_KEY": "your-bing-api-key"
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything