zhipu-web-search-mcp
by qianlima365
This project provides a web search service that can be launched using either stdio or SSE protocols. It includes server-side and client-side components for interacting with the search functionality.
Last updated: N/A
What is zhipu-web-search-mcp?
This is a web search service built with Python, designed to be deployed and accessed using either stdio or Server-Sent Events (SSE) protocols. It includes both server and client components.
How to use zhipu-web-search-mcp?
To use the service, you can start the server using either the stdio or SSE methods described in the README. For stdio, configure the client with the provided JSON snippet. For SSE, run the server and then the client, pointing the client to the server's SSE endpoint.
Key features of zhipu-web-search-mcp
Supports stdio protocol
Supports SSE protocol
Includes server and client components
Configurable server settings
Python-based implementation
Use cases of zhipu-web-search-mcp
Integrating web search functionality into applications
Building custom search interfaces
Experimenting with different communication protocols (stdio, SSE)
Developing search-related microservices
FAQ from zhipu-web-search-mcp
How do I configure the client for stdio?
How do I configure the client for stdio?
Use the provided JSON snippet in the README, replacing <你的项目路径>
with the actual path to your project.
What is the default port for the SSE server?
What is the default port for the SSE server?
The example uses port 8020, but you can configure it using the --port
argument when running main.py
.
Can I use a different host for the SSE server?
Can I use a different host for the SSE server?
Yes, you can configure the host using the --host
argument when running main.py
.
What are the dependencies for running the server and client?
What are the dependencies for running the server and client?
The README doesn't explicitly list dependencies, but it's likely you'll need Python and potentially libraries like uv
or similar ASGI server.
Where can I find more detailed documentation?
Where can I find more detailed documentation?
The README provides the basic usage instructions. More detailed documentation may be available within the code itself or in related documentation for the mcp
framework.