Performs Google searches and extracts results
Visits a webpage and extracts its content
Takes a screenshot of the current page
Web Research is a powerful tool that brings real-time internet access to Claude, allowing it to search the web, visit pages, and extract relevant information. It maintains a research session that tracks visited pages, search queries, and captured screenshots, making it ideal for comprehensive research tasks. With Web Research, Claude can perform Google searches, navigate to websites, extract content, and even take screenshots of pages. This enables more informed responses based on current information rather than relying solely on Claude's training data. The integration is designed to support thorough research workflows with features for tracking sources and maintaining context throughout a research session.
Web Research is a Model Context Protocol (MCP) server that enables Claude to perform real-time web research. It allows Claude to search the web, visit webpages, extract content, and capture screenshots, making it an invaluable tool for research tasks that require current information.
Before installing Web Research, ensure you have:
npm
and npx
)To install Web Research, you need to add it to your Claude Desktop configuration:
Locate your claude_desktop_config.json
file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add the following entry to the configuration file:
{
"mcpServers": {
"webresearch": {
"command": "npx",
"args": ["-y", "@mzxrai/mcp-webresearch@latest"]
}
}
}
This configuration allows Claude Desktop to automatically start the Web Research MCP server when needed.
You can use Web Research in two ways:
Simply start a chat with Claude and ask questions that would benefit from web research. Claude will use the available tools to search for information and visit relevant webpages.
Web Research maintains a research session that includes:
You can access captured screenshots in Claude Desktop via the Paperclip icon.
If you encounter issues with Web Research:
Check Claude Desktop's MCP logs:
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
Ensure you have the correct Node.js version installed (18+)
Try restarting Claude Desktop
If problems persist, you may need to manually install the package:
npm install -g @mzxrai/mcp-webresearch