Internetsearch-mcp-server
About
Internetsearch-mcp-server is an MCP (Model Context Protocol) server that enables internet search functionality. It integrates with the Bocha AI search API and is intended for developers who want to add web search capabilities to MCP-compatible clients (e.g., AI assistants).
Details
- Author
- mingdedi
- Downloads
- 202
- Categories
- Other
Jump to
- Provides web search through the MCP protocol
- Uses the Bocha search API as the backend
- Simple Python implementation with uv for dependency management
- Easy integration with MCP-enabled AI tools
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Internetsearch-mcp-serverCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Clone the repository, set up a Python virtual environment via uv, install dependencies with uv sync, then configure your MCP client to point to the server script (Internet_search.py) and set the BOCHAAI_API_KEY environment variable with a valid key obtained from Bocha AI.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"internetsearch-mcp-server": {
"Internetsearch-mcp-server": {
"command": "uv",
"args": [
"venv"
]
}
}
}
}
McpServers
{
"Internetsearch-mcp-server": {
"command": "uv",
"args": [
"venv"
]
}
}
Internetsearch-mcp-server
一个用于联网搜索的MCP服务器
基于博查搜索API的MCP服务器
需要使用博查AI的搜索服务密钥,具体文档请查阅博查开发文档.
如何使用
1、将仓库git clone
git clone https://github.com/mingdedi/Internetsearch-mcp-server.git
2、使用uv重建环境
cd Internetsearch-mcp-server
pip install uv
uv venv
./.venv/Scripts/activate.bat
uv sync
3、在配置文件中添加,类似格式如下
{
"mcpServers": {
"Internetsearch-mcp-server": {
"description": "Internetsearch-mcp-server",
"command": "uv",
"args": [
"--directory",
"/path/Internetsearch-mcp-server",
"run",
"Internet_search.py"
],
"env": {
"BOCHAAI_API_KEY": "sk-123456789412345678312323456789e"
}
}
}
}
注意
这里的BOCHAAI_API_KEY中的密钥仅仅是一个示例。
如果想要获取一个实际可用的密钥请访问博查AI
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



