Zhipu Web Search MCP

by qianlima365

1 stars
382 downloads
Not rated
GitHub

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

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:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Zhipu Web Search MCP
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. 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
   
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.