website-content-crawler
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@website-content-crawlerCrawl https://example.com and extract title, links, and markdown."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Website Content Crawler
Crawls a list of URLs and returns page content as structured JSON. Runs as an Apify Actor and as an MCP server so agents can call it directly.
Live demo: https://website-content-crawler.vercel.app
What it costs to run
Pay per Event on Apify:
Event | Price |
Actor start | $0.00005 |
Page record returned | $0.001 |
Platform compute is deducted before payout; see PRICING.md for unit economics.
Related MCP server: cleanfetch
Output
Every run returns this exact shape. The output schema enforces it.
{
"url": "https://example.com",
"status": 200,
"title": "Example Domain",
"description": null,
"h1": "Example Domain",
"markdown": "# Example Domain\n\nThis domain is for use in documentation examples without needing permission. Avoid use in operations.\n\nLearn more\n\nLearn more (https://iana.org/domains/example)",
"links": [
"https://iana.org/domains/example"
],
"wordCount": 23,
"crawledAt": "2026-08-23T09:55:20.140Z",
"error": null
}Layout
src/— actor source (Crawlee Cheerio crawler).actor/— Apify actor spec:actor.json,INPUT_SCHEMA.json,output_schema.json,dataset_schema.json,Dockerfilemcp-server/— MCP wrapper exposing the actor as thecrawl_websitetoolsite/+tools/— builds the live demo page from a real run record
Run locally
npm install
npm testMCP server:
cd mcp-server && npm install && node smoke.mjsPublishing to the Apify Store
When the account is active: apify push, price as Pay per Event, listing uses this README.
This server cannot be deployed
Maintenance
Related MCP Connectors
Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.
Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.
Read any web page as clean Markdown for AI agents: fetch, search, metadata, links. SSRF-safe.
Fetch pages as markdown, search web and news, extract structured data. For AI agents.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables LLMs to retrieve and process web content by fetching URLs and converting HTML to markdown format. Supports chunked reading of large pages and can access both public websites and local networks.1MIT
- AlicenseAqualityCmaintenanceEnables AI agents to read web pages reliably, returning clean markdown content, hyperlinks, and metadata without navigation or ad noise.36 npmMIT
- AlicenseAqualityCmaintenanceEnables AI agents to fetch any web page as clean markdown or screenshot it, turning URLs into LLM-ready context.26 npmMIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to crawl and scrape websites, converting HTML to clean Markdown and structured metadata with support for JavaScript rendering, bot evasion, and SSRF protection.171MIT