- Home
- MCP servers
- Bing CN
Bing CN
- javascript
2
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"lynxe-public-bing-mcp-cn-enhanced": {
"command": "npx",
"args": [
"bing-cn-mcp-enhanced"
]
}
}
}You can run a lightweight MCP server that lets you search Chinese Bing results and fetch webpage content directly from supported MCP clients. It’s designed to be easy to install, fast to start, and usable without an API key by leveraging Bing’s public search results. This MCP server focuses on Chinese-language results and is ready to be called from tools like Claude that support MCP.
How to use
Install and run the MCP server, then connect your MCP client to it to perform two main actions: search Bing for Chinese results and fetch the content of a selected webpage. Use the search tool to obtain a list of results with identifiers, then call the fetch tool with a result id to retrieve the page content. This setup lets you perform web research and content extraction through your MCP-enabled assistant.
How to install
Prerequisites: Node.js and npm must be available on your system.
# Global installation
npm install -g bing-cn-mcp-enhanced
# Or run directly with npx
npx bing-cn-mcp-enhanced
Additional setup and usage notes
To use the MCP server in an environment that supports MCP, create or edit the MCP configuration to register the server under a logical name, then start using the provided MCP tools from your client.
{
"mcpServers": {
"EnhancedBing": {
"command": "npx",
"args": [
"bing-cn-mcp-enhanced"
]
}
}
}
Configuration and logs
MCP server logs are written to standard error. You can route logs to a file or tee them to both the console and a file by adjusting the MCP configuration.
{
"mcpServers": {
"EnhancedBing": {
"command": "sh",
"args": [
"-c",
"npx bing-cn-mcp-enhanced 2>> ~/.mcp-logs/bing-cn-mcp-enhanced.log"
]
}
}
}
Environment variables
You can customize behavior with environment variables. A common example is setting a custom user agent.
# User agent header for requests
USER_AGENT=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Usage with MCP clients
In an MCP-enabled environment (for example, a client that supports MCP), you can access the two tools named after the features: mcp__bing_search to search Bing and mcp__fetch_webpage to fetch the content of a page. Use these tools from your assistant to perform Chinese Bing searches and retrieve page content.
Available tools
bing_search
Search Bing and return a list of results.
fetch_webpage
Fetch the content of a webpage by result ID.