Website Downloader Mcp Server
Overview
What is Website Downloader?
Website Downloader is a powerful tool designed to download entire websites for offline access. This tool allows users to save web pages, images, and other media files from a website, enabling them to browse the content without an internet connection. It is particularly useful for users who want to archive web content, conduct research, or simply save their favorite sites for later viewing.
Features of Website Downloader
- Complete Website Download: Capture all elements of a website, including HTML, CSS, JavaScript, images, and videos.
- Offline Browsing: Access downloaded websites without an internet connection, making it convenient for travel or areas with limited connectivity.
- User-Friendly Interface: Simple and intuitive design that allows users to easily navigate and download websites with minimal effort.
- Customizable Options: Users can select specific pages or entire domains to download, providing flexibility based on individual needs.
- Fast Download Speeds: Optimized for quick downloads, allowing users to save time while archiving content.
- Cross-Platform Compatibility: Works on various operating systems, ensuring accessibility for all users.
How to Use Website Downloader
- Download and Install: Begin by downloading the Website Downloader application from the official site or repository.
- Enter URL: Open the application and enter the URL of the website you wish to download.
- Select Options: Choose your download preferences, such as whether to include images, videos, or specific file types.
- Start Download: Click the download button to begin the process. The application will start fetching the website's content.
- Access Offline: Once the download is complete, you can access the website offline through your browser or the application itself.
Frequently Asked Questions
Q: Is Website Downloader free to use?
A: Yes, Website Downloader is available for free, although some advanced features may require a premium version.
Q: Can I download any website?
A: Most websites can be downloaded, but some may have restrictions or protections in place that prevent downloading.
Q: How much storage space is needed?
A: The storage space required depends on the size of the website. Larger sites with many media files will require more space.
Q: Is it legal to download websites?
A: Downloading websites for personal use is generally legal, but redistributing or using the content without permission may violate copyright laws.
Q: Can I schedule downloads?
A: Some versions of Website Downloader may offer scheduling features, allowing you to set specific times for downloads to occur.
By utilizing Website Downloader, users can efficiently save and access web content offline, making it a valuable tool for anyone looking to archive their favorite websites.
Details
Website Downloader MCP Server
This MCP server provides a tool to download entire websites using wget. It preserves the website structure and converts links to work locally.
<a href="https://glama.ai/mcp/servers/egcwr79vu2"><img width="380" height="200" src="https://glama.ai/mcp/servers/egcwr79vu2/badge" alt="Google Workspace Server MCP server" /></a>
Prerequisites
The server requires wget
to be installed on your system.
Installing wget
macOS
Using Homebrew:
brew install wget
Linux (Debian/Ubuntu)
sudo apt-get update
sudo apt-get install wget
Linux (Red Hat/Fedora)
sudo dnf install wget
Windows
- Using Chocolatey:
choco install wget
- Or download the binary from: https://eternallybored.org/misc/wget/
- Download the latest wget.exe
- Place it in a directory that's in your PATH (e.g., C:\Windows\System32)
Usage
The server provides a tool called download_website
with the following parameters:
url
(required): The URL of the website to downloadoutputPath
(optional): The directory where the website should be downloaded. Defaults to the current directory.depth
(optional): Maximum depth level for recursive downloading. Defaults to infinite. Set to 0 for just the specified page, 1 for direct links, etc.
Example
{
"url": "https://example.com",
"outputPath": "/path/to/output",
"depth": 2 // Optional: Download up to 2 levels deep
}
Features
The website downloader:
- Downloads recursively with infinite depth
- Includes all page requisites (CSS, images, etc.)
- Converts links to work locally
- Adds appropriate extensions to files
- Restricts downloads to the same domain
- Preserves the website structure
Installation
- Build the server:
npm install
npm run build
- Add to MCP settings:
{
"mcpServers": {
"website-downloader": {
"command": "node",
"args": ["/path/to/website-downloader/build/index.js"]
}
}
}
Server Config
{
"mcpServers": {
"website-downloader": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--pskill9--website-downloader--website-downloader",
"node ./build/index.js"
],
"env": {}
}
}
}