MCP server to fetch web content
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"webfetch-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Rust-based MCP server that provides a fetch tool for retrieving the content of a web page by URL via the MCP protocol.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser
Browser automation with Puppeteer for web scraping and testing
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for Webfetch Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Rust-based MCP server that provides a fetch tool for retrieving the content of a web page by URL via the MCP protocol.
Create .devcontainer/devcontainer.json as follows:
This is a minimal devcontainer configuration required to use this repository as an MCP server.
Place the following file at .devcontainer/devcontainer.json in your project.
Note:
This is a sample configuration.
Thecargocommand is required for installation and is available in the specified devcontainer image.
This configuration allows you to quickly set up a development environment for the webfetch-mcp-server using Visual Studio Code and the Dev Containers extension.
After opening your project in VS Code, select Dev Containers: Reopen in Container from the Command Palette to start developing inside the container.
{
"image": "mcr.microsoft.com/devcontainers/rust:1-bullseye",
"postCreateCommand": "cargo install --git https://github.com/arapower/webfetch-mcp-server.git"
}
You can configure the MCP client in VSCode by creating .vscode/mcp.json.
Below are sample configurations for each type.
type: "stdio"{
"servers": {
"webfetch": {
"type": "stdio",
"command": "webfetch"
}
}
}
webfetch runs as an MCP server using standard input/output.type: "http"{
"servers": {
"webfetch-api": {
"type": "http",
"url": "http://host.docker.internal:8040/mcp"
}
}
}
webfetch-api connects to the MCP server via HTTP at the specified URL.From an MCP client, send a request like the following:
{
"url": "https://example.com"
}
You will receive the content of the web page.
Depending on your build environment, you may encounter errors if the OpenSSL development package is missing.
This error occurs because the Rust dependency crate openssl-sys cannot find the OpenSSL development libraries (such as header files and .pc files) on your system.
You can resolve this by installing the OpenSSL development package using the following commands:
Ubuntu/Debian:
sudo apt-get update
sudo apt-get install pkg-config libssl-dev
Fedora/RHEL:
sudo dnf install pkg-config openssl-devel
Arch Linux:
sudo pacman -S pkgconf openssl
Q: webfetch command not found
A: Please run cargo install --git https://github.com/arapower/webfetch-mcp-server.git inside the Dev Container.
Q: Cannot connect from MCP client
A: Check if the command setting in mcp.json is correct and ensure the server is running.
MIT