Zhipu Web Search MCP
About
A Model Context Protocol (MCP) server that can be started via either the stdio protocol or the SSE protocol. The repository includes a client script for testing the SSE connection.
Details
- Author
- qianlima365
- GitHub stars
- 1
- Downloads
- 382
- Categories
- Search
Jump to
—
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
Zhipu Web Search MCPCommand (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
To start using the stdio protocol, run mcp dev web_search.py. To start using the SSE protocol, run uv run main.py --host 0.0.0.0 --port 8020. Connect a client to the SSE server with uv run client.py http://127.0.0.1:8020/sse. For stdio, configure the MCP client with a JSON object setting the command to uv with appropriate arguments.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"zhipu web search mcp": {
"zhipu-web-search-mcp": {
"command": "uv",
"args": [
"run",
"main.py",
"--host",
"0.0.0.0",
"--port",
"8020"
]
}
}
}
}
McpServers
{
"zhipu-web-search-mcp": {
"command": "uv",
"args": [
"run",
"main.py",
"--host",
"0.0.0.0",
"--port",
"8020"
]
}
}
运行服务
1. 通过stdio协议启动服务端
mcp dev web_search.py
- 配置客户端
{
"mcpServers": {
"mcp-server": {
"command": "uv",
"args": [
"--directory",
"<你的项目路径>",
"run",
"main.py"
]
}
}
}
2. 通过SSE协议启动服务端
-
uv run main.py --host 0.0.0.0 --port 8020
- 运行客户端
uv run client.py http://127.0.0.1:8020/sse
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.

