MCP Catalogs
首页bing-search-mcp screenshot

bing-search-mcp

by leehanchung·79·综合分 40

通过Bing搜索API提供网页、新闻和图片搜索功能的MCP服务器。

searchai-llm
9
Forks
5
活跃 Issue
14 个月前
最近提交
2 天前
收录于

概述

这是一个结构良好的MCP服务器,将微软Bing搜索API功能集成到MCP兼容客户端中。它提供三种主要搜索功能:通用网页搜索、新闻搜索和图片搜索。服务器包含适当的速率限制和全面的错误处理。实现清晰,每种搜索类型都有明确的关注点分离。

试试问 AI

装完之后,这里有 3 个你可以让 AI 做的事:

:使AI助手能够执行实时网页搜索获取最新信息
:检索最新新闻文章进行及时信息收集
:通过Bing的图片搜索功能查找和处理视觉内容

什么时候选它

当您需要必应特定的搜索功能,并且您的 AI 助手需要访问网页、新闻或图片搜索功能时,选择此服务器。

什么时候不要选它

如果您需要来自谷歌或 DuckDuckGo 等其他提供商的搜索结果,或者您需要必应提供之外的搜索功能,请不要选择此服务器。

此 server 暴露的工具

从 README 抽取出 3 个工具
  • bing_web_searchbing_web_search(query: str, count: int = 10, offset: int = 0, market: str = "en-US")

    General web search for information, websites, and content.

  • bing_news_searchbing_news_search(query: str, count: int = 10, market: str = "en-US", freshness: str = "Day")

    Search for news articles and current events.

  • bing_image_searchbing_image_search(query: str, count: int = 10, market: str = "en-US")

    Search for images.

可对比工具

google-search-mcpduckduckgo-searchweb-search-mcp

安装

安装

  1. 克隆仓库
  2. 安装依赖项:

`` 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"
      }
    }
  }
}

bing-search-mcp 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。