Web Research MCP Server
Uses the web to research a given topic.
This is a Model Context Protocol (MCP) server project.
Setup and Installation
Simply run:
make
To create the virtual environment and install dependencies.
Running the Server
Use the VSCode launch configuration, or run manually:
Defaults to stdio transport:
uv run mcp-server-web-research
For SSE transport:
uv run mcp-server-web-research --transport sse --port 6060
The SSE URL is:
http://127.0.0.1:45567/sse
Client Configuration
To use this MCP server in your setup, consider the following configuration:
Stdio
{
"mcpServers": {
"mcp-server-web-research": {
"command": "uv",
"args": ["run", "-m", "mcp_server_web_research.start"]
}
}
}
SSE
{
"mcpServers": {
"mcp-server-web-research": {
"command": "http://127.0.0.1:6060/sse",
"args": []
}
}
}