Bing Search MCP Server

A Model Context Protocol (MCP) server for Microsoft Bing Search API integration, allowing AI assistants to perform web, news, and image searches.

Local serverstdioPython

What is the Bing Search MCP MCP server?

A Model Context Protocol (MCP) server for Microsoft Bing Search API integration, allowing AI assistants to perform web, news, and image searches. The bing search mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it rather than through you.

What it actually does

  • Web search for general information
  • News search for recent events and timely information
  • Image search for visual content
  • Rate limiting to prevent API abuse
  • Comprehensive error handling

Adding it to your client

The server ships on PyPI as bing-search-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Configuration

You will need 2 environment variables: BING_API_KEY, BING_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Python 3.10 or higher - Microsoft Bing Search API key - MCP-compatible client (e.g., Claude Desktop, Cursor)

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the bing search mcp mcp server does with a few real requests.

When to reach for it

Among the search and retrieval options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by leehanchung; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Bing Search MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

How to install the Bing Search MCP MCP server

{
  "mcpServers": {
    "bing-search": {
      "command": "uvx",
      "args": ["bing-search-mcp"],
      "env": {
        "BING_API_KEY": "your-value",
        "BING_API_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Python 3.10 or higher - Microsoft Bing Search API key - MCP-compatible client (e.g., Claude Desktop, Cursor)
VariableDescriptionRequired
BING_API_KEYCredential the server authenticates with.Yes
BING_API_URLEndpoint or connection string the server talks to.Yes

Frequently asked questions

It connects Bing Search MCP to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Bing Search MCP directly.