MCP Deep Web Research Server (v0.3.0)
Enhanced MCP server for deep web research
Overview
MCP Deep Web Research Server is an advanced Model Context Protocol (MCP) server designed for deep web research, enhancing the capabilities of web content extraction and intelligent search.
To use the server, install it globally or locally via npm, yarn, or pnpm, and integrate it with the Claude Desktop app. Start a chat with Claude and use the provided prompts for web research.
- Intelligent search queue system with batch operations and error recovery. - Enhanced content extraction with TF-IDF scoring and readability analysis. - Google search integration and research session tracking.
- Conducting comprehensive research on various topics.
- Extracting and analyzing content from deep web sources.
- Assisting in academic or professional research projects.
Add to your AI client
Use these steps to connect MCP Deep Web Research Server (v0.3.0) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-deepwebresearch-qpd-v": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-deepwebresearch-qpd-v"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-deepwebresearch-qpd-v": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-deepwebresearch-qpd-v"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-deepwebresearch-qpd-v": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-deepwebresearch-qpd-v"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-deepwebresearch-qpd-v": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-deepwebresearch-qpd-v"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-deepwebresearch-qpd-v": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-deepwebresearch-qpd-v"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-deepwebresearch-qpd-v": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-deepwebresearch-qpd-v"
]
}
}
}FAQ
Is the server free to use?
Yes, it is open-source and free to use.
What are the prerequisites for installation?
You need Node.js >= 18 and the Claude Desktop app.
How can I troubleshoot common issues?
Check the logs in Claude Desktop and ensure all dependencies are installed correctly.