B
Bing Search
Search the web via Bing Search API.
·No reviews yet
Share:
About
Auto-generated
Bing Search is a Model Context Protocol server in the Search & Web category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
web_search
Search the web and return top results
fetch_url
Fetch and return the contents of a URL
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Bing Search.
- What is the primary function of the Bing Search MCP?
- The Bing Search MCP allows users to access and utilize the Bing Search API to perform web searches directly. It translates search queries into Bing API calls and returns the results.
- How can I install the Bing Search MCP in a client application like Cursor?
- Installation typically involves adding the MCP's repository URL (https://github.com/leehanchung/bing-search-mcp) within your client's MCP configuration. Specific steps may vary depending on the client version and interface.
- Does the Bing Search MCP require an API key for operation?
- Yes, this MCP uses 'apikey' as its authentication type, meaning an API key is required to authenticate requests to the Bing Search API. This key must be properly configured within the MCP.
- What kind of capabilities does the Bing Search MCP expose?
- The MCP's primary capability is to perform web searches using the Bing Search API. It provides an interface to query web content, enabling users to retrieve search results programmatically.
- Are there any costs associated with using the Bing Search MCP?
- The MCP itself is open-source and provided by the community. However, the underlying Bing Search API may have its own usage-based costs or subscription fees, which depend on the service provider.
- What is a key limitation when using the Bing Search MCP?
- A significant limitation is the dependency on the Bing Search API's rate limits and terms of service. Excessive use or improper configuration of the API key can lead to service interruptions or blocked access.
Install Bing Search
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"bing-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bing-search"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"bing-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bing-search"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"bing-search": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bing-search"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.