DeepCrawl AI — Universal Website to Markdown Crawler Pro avatar

DeepCrawl AI — Universal Website to Markdown Crawler Pro

Pricing

from $2.49 / 1,000 results

Go to Apify Store
DeepCrawl AI — Universal Website to Markdown Crawler Pro

DeepCrawl AI — Universal Website to Markdown Crawler Pro

Crawl entire websites, sitemaps, and documentation hubs into clean, LLM-ready Markdown with zero ads, cookie banners, navbars, or clutter. Built for RAG pipelines & AI agents!

Pricing

from $2.49 / 1,000 results

Rating

0.0

(0)

Developer

Meanus Arcanus

Meanus Arcanus

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

🤖 DeepCrawl AI — Universal Website to Markdown Crawler Pro (Model Context Protocol Server)

MCP Protocol Python 3.8+ License: MIT Glama

A high-performance Model Context Protocol (MCP) Server and deep domain crawler that turns any website, documentation hub, or sitemap into clean, LLM-ready Markdown for Claude Desktop, Cursor IDE, LangChain, RAG pipelines, and Autonomous AI Agents.

DeepCrawl AI Logo


⚡ Overview

DeepCrawl AI is a lightweight, high-speed alternative to Firecrawl and Crawl4AI. It recursively crawls documentation portals (e.g. Stripe, FastAPI, Supabase) and blogs, strips all web noise (ads, cookie banners, tracking scripts, navigation menus), and formats the core content into token-budgeted GitHub-Flavored Markdown.

  • 🛡️ Zero Noise HTML Cleaner: Strips header/footer boilerplates, cookie banners, popups, and sidebar ads.
  • 🌲 BFS Deep Domain Crawler: Recursively discovers internal links with strict domain boundary locking.
  • 🗺️ Fast Sitemap & URL Mapper: Maps all available URLs across an entire domain in seconds.
  • 🔌 Zero-Config MCP Integration: Plug-and-play with Claude Desktop, Cursor, and Antigravity agents.

🛠️ MCP Tools & Capabilities

The server exposes the following Model Context Protocol (MCP) tools:

Tool NameParametersDescription
scrape_url_markdownurl (string, required)Scrapes a single webpage, removes ads/cookie popups, and returns clean GitHub Flavored Markdown with token metrics.
crawl_domain_markdownstart_url (string, required), max_pages (int), max_depth (int)Recursively crawls an entire documentation site or blog up to a depth limit, returning a unified Markdown bundle for RAG.
map_domain_urlsstart_url (string, required), max_links (int)Fast discovery of all internal URLs and sitemap routes across a domain without downloading full page bodies.

🔌 Quickstart: Connect to Claude Desktop & Cursor

1. Claude Desktop Configuration

Add this server to your claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"deep-markdown-crawler": {
"command": "python3",
"args": [
"/path/to/deep-markdown-crawler-api/mcp_server.py"
]
}
}
}

2. Cursor IDE Configuration (.cursor/mcp.json)

{
"mcpServers": {
"deep-markdown-crawler": {
"command": "python3",
"args": ["/path/to/deep-markdown-crawler-api/mcp_server.py"]
}
}
}

📦 Python SDK & CLI Usage

$pip install deep-markdown-crawler
from deep_markdown_crawler import scrape_url_to_markdown, crawl_domain_to_markdown
# 1. Scrape Single URL
doc = scrape_url_to_markdown("https://fastapi.tiangolo.com/tutorial/")
print(f"Title: {doc['title']} | Tokens: ~{doc['token_count']}")
print(doc['markdown'][:500])
# 2. Deep Crawl Entire Domain
crawl = crawl_domain_to_markdown(
start_url="https://fastapi.tiangolo.com/tutorial/",
max_pages=5,
max_depth=2
)
print(f"Crawled {crawl['total_pages_crawled']} pages ({crawl['total_tokens_estimated']} tokens).")

🌐 Serverless REST API Endpoints

MethodEndpointDescription
POST/api/v1/scrapeSingle URL to clean GitHub-Flavored Markdown.
POST/api/v1/crawlRecursive domain crawler for multi-page documentation hubs.
POST/api/v1/mapFast domain URL & sitemap mapper.
GET/api/v1/healthService health status and supported features.

📄 License

MIT License. Created by Meanus Arcanus.