Site Cloner MCP Server
@SarthakMishra
关于 Site Cloner MCP Server
MCP server to help LLMs clone websites by providing tools to fetch, analyze, and download website assets.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"site-cloner": {
"command": "docker",
"args": [
"build",
"-t",
"site-cloner-mcp",
"."
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Site Cloner MCP Server?
Site Cloner MCP Server is an MCP (Model Context Protocol) server that helps LLMs like Claude clone websites by providing tools to fetch, analyze, and download website assets. It is built for developers and AI users who need to capture local copies of web pages.
How to use Site Cloner MCP Server?
The server runs in Docker. Build the image (docker build -t site-cloner-mcp .) and run the container (docker run -i --rm site-cloner-mcp). For persistent storage, mount a volume. To integrate with Cursor, add a project-level .cursor/mcp.json or a global MCP server pointing to the Docker command. Once configured, ask Claude to clone a website, and it will use the available tools to fetch, parse, download, and organize assets.
Key features of Site Cloner MCP Server
- Fetch HTML content from any URL
- Extract assets (CSS, JavaScript, images, fonts, etc.) from HTML
- Download individual assets to a local directory
- Parse CSS files to extract linked assets (fonts, images)
- Create a sitemap of a website
- Analyze page structure and layout
Use cases of Site Cloner MCP Server
- Clone a website for offline review or archival
- Download all assets of a page for local development
- Generate a sitemap for small websites
- Analyze the structure of a webpage programmatically
- Extract and save CSS-linked resources like fonts and images
FAQ from Site Cloner MCP Server
Why is the server not showing up in Cursor?
Restart Cursor, check your configuration file syntax, and ensure Docker is installed and running. Look at Cursor’s MCP logs (Output → Cursor MCP) for errors. Try running the server manually with docker run -i --rm site-cloner-mcp.
How do I fix a “ModuleNotFoundError: No module named 'site_cloner'”?
Check that the package name in pyproject.toml is correct and that import statements do not include the src. prefix. Rebuild the Docker image with docker build --no-cache -t site-cloner-mcp ..
Where do downloaded files go?
The server automatically organizes downloaded assets into subdirectories based on content type: html, css, js, images, fonts, videos, other. Use a mounted volume to persist them outside the container.
Are there any legal considerations when using this server?
Be mindful of copyright and terms of service restrictions when cloning sites. Some websites may block automated requests; you might need to adjust the user agent string.
Does the server have any dependencies beyond Docker?
Yes, Docker must be installed on your system. The server itself is packaged as a Docker image and requires no additional local runtime.
其他 分类下的更多 MCP 服务器
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
Awesome Mlops
visengerA curated list of references for MLOps
ghidraMCP
LaurieWiredMCP Server for Ghidra
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
评论