{
"mcpServers": {
"webfetch-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server to fetch web content
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 276 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Production ready MCP server with real-time search, extract, map & crawl.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Browser automation with Puppeteer for web scraping and testing
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