AIMLPM/markcrawl

πŸ”Ž Search & Data Extraction
0 Views
0 Installs

🐍 🏠 - Crawl websites into clean Markdown, search pages, and extract structured data with LLMs. Built-in MCP server for web research and RAG pipelines.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "aimlpm-markcrawl": {
      "command": "npx",
      "args": [
        "-y",
        "aimlpm-markcrawl"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

MarkCrawl by iD8 πŸ•·οΈπŸ“

Turn any webpage or website into clean Markdown for LLM pipelines β€” in one command.

CI PyPI Version License markcrawl MCP server

Latest: v0.11.1 (2026-05-12) β€” default aggregator URL filter. See What's New below.

pip install markcrawl
markcrawl --base https://docs.example.com --out ./output --show-progress

MarkCrawl is a crawl-and-structure engine. It fetches one page or crawls an entire website, strips navigation/scripts/boilerplate, and writes clean Markdown files with a structured JSONL index. Every page includes a citation with the access date. No API keys needed.

Everything else β€” LLM extraction, Supabase upload, MCP server, LangChain tools β€” is optional and installed separately.

Want a hosted API instead of running locally? Join the waitlist β€” we're gauging interest.

LLM agents: Load docs/LLM_PROMPT.md as a system prompt to generate correct MarkCrawl commands automatically.

What's New

Install or upgrade with pip:

pip install --upgrade markcrawl
pip show markcrawl | grep Version       # confirm the installed version
markcrawl --help | head -1              # confirm the binary on $PATH is the upgraded one

If markcrawl --help is missing flags you expect (e.g. --screenshot, --seed-file, --smart-sample, --download-images), your local install is stale. Run pip install --upgrade markcrawl against the same Python that owns the markcrawl binary on your PATH β€” head -1 $(which markcrawl) shows the right interpreter. PyPI is always the source of truth; see CHANGELOG.md for the full release history.

v0.11 highlights (changelog):

  • Aggregator URL filter (default, v0.11.1) β€” rejects mdBook /print.html and Hugo /_print/ pages during crawl-time URL filtering. These bundle the entire docs tree on a single URL and otherwise dominate retrieval rankings on cosine similarity (markcrawl was returning them in 49% of rust-book and 39% of kubernetes-docs top-5 retrieval slots before the fix; competitors return 0%). Opt out via include_aggregator_pages=True / --include-aggregators.
  • Binary downloads (v0.11.0) β€” new download_types=["pdf", "docx"] kwarg streams referenced files to <out_dir>/downloads/ with size + content-type guards. Pre-fetch download_filter callback receives URL + anchor text + parent-page context; reject candidates before any HTTP bytes transfer.
  • Local embedder is the default since v0.10.1 β€” pip install markcrawl ships the full ML stack (torch + transformers + sentence-transformers). Zero API key required for embedding. Override with MARKCRAWL_EMBEDDER=text-embedding-3-small or the embedding_model kwarg if you want OpenAI back.
  • Tenacity-backed HTTP retry β€” full-jitter exponential backoff (2 s β†’ 30 s, 5 attempts) that honors the server's Retry-After header on 429s.

Where markcrawl stands on the public benchmark, honestly. The independent llm-crawler-benchmarks v1.4 leaderboard measures 7 web crawlers on how well their output supports RAG. Markcrawl ranks 1st on cost ($4,505/yr at 100,000-page scale) but 7th of 7 on answer quality (3.77/5) and retrieval accuracy (MRR 0.341 vs leaders at 0.76). We're actively working to close that gap on three fronts:

  1. v0.11.1 (just shipped) filters out /print.html and /_print/ "whole-book-on-one-page" URLs that were stealing 39–49% of markcrawl's top-5 retrieval slots on documentation sites. Competitors already filter these. Expected MRR improvement: +0.02 to +0.04 on docs-heavy sites (formal measurement pending the next benchmark cycle).
  2. Upcoming releases improve how markcrawl chooses which pages to crawl within its budget β€” markcrawl's deliberately-narrower crawl strategy (which keeps cost low and signal-to-noise high) is also the main cause of the retrieval gap.
  3. The benchmark itself is being improved β€” v1.4's test questions were sampled from one specific crawler's output, which structurally penalizes any crawler whose discovery strategy differs from that anchor. The benchmark is being updated so each site's test questions come from the site's own sitemap, independent of any crawler. We expect this fix alone to surface ~5–10% of markcrawl's current "misses" as actually correct answers at different URLs β€” work shown in our audit notes.

Goal for the next benchmark cycle: move from 7th to mid-pack on retrieval (+0.10 to +0.20 MRR) and answer quality, while keeping the cost-efficiency lead. Honest, measured progress β€” we publish the numbers either way.

Quickstart (2 minutes)

pip install markcrawl
markcrawl --base https://quotes.toscrape.com --out ./demo --max-pages 5 --show-progress

Your ./demo folder now contains:

demo/
β”œβ”€β”€ index__a4f3b2c1d0.md    ← clean Markdown of the page
β”œβ”€β”€ page-2__b7e2d1f0a3.md
β”œβ”€β”€ ...
└── pages.jsonl              ← structured index (one JSON line per page)

Each line in pages.jsonl:

{
  "url": "https://quotes.toscrape.com/",
  "title": "Quotes to Scrape",
  "crawled_at": "2026-04-04T12:30:00Z",
  "citation": "Quotes to Scrape. quotes.toscrape.com. Available at: https://quotes.toscrape.com/ [Accessed April 04, 2026].",
  "tool": "markcrawl",
  "text": "# Quotes to Scrape\n\n> "The world as we have created it is a process of our thinking..." β€” Albert Einstein\n\nTags: change, deep-thoughts, thinking, world..."
}

Schema β€” every page in pages.jsonl has these fields:

FieldTypeDescription
urlstringOriginal URL fetched.
titlestringPage title from <title> (or first H1 if missing).
crawled_atstring (ISO 8601)UTC timestamp of when the page was fetched.
citationstringPre-formatted academic-style citation including access date.
toolstringAlways "markcrawl". Helps when merging output from multiple crawlers.
textstringClean Markdown content (nav/footer/scripts stripped).
downloadsarray (optional)Present when download_types is set; one entry per saved binary: {url, path, size_bytes, content_type}.
imagesarray (optional)Present when --download-images is set; lists saved image paths.
screenshotstring (optional)Present when --screenshot is set; relative path to the PNG/JPEG capture.

Common Recipes

Runnable examples for the most common patterns:

  • Single-page scrapes β€” including JS-rendered pages (React, Vue, YouTube)
  • Whole-site crawls β€” docs, blogs, subsections; resume interrupted runs
  • URL filtering β€” --exclude-path, --include-path, --dry-run, smart sampling
  • Extraction backends β€” BS4 (default), trafilatura, ensemble, ReaderLM-v2
  • Binary downloads β€” images, PDFs (with pre-fetch filter callbacks), DOCX
  • Screenshots β€” full-page or cropped, PNG or JPEG
  • End-to-end use cases β€” competitive analysis, RAG chatbot, API-docs β†’ code-gen

Full recipes with copy-paste commands and expected outputs: docs/RECIPES.md.

How it compares to other crawlers β€” decision matrix

Pick this tool when…

If you need…Use…Why
Clean Markdown for LLM/RAG ingestion, run locally, no API keysMarkCrawlDefault install bundles local embedder ($0 API spend); strips nav/scripts; produces JSONL with citations out of the box
A hosted scraping API (no infra to run)FireCrawlSaaS option; pay-per-call; outsources crawling entirely
AI-native crawling with built-in LLM extractionCrawl4AIDeeper LLM-extraction primitives; built-in Playwright
Massive distributed crawling (millions of pages, custom pipelines)ScrapyBattle-tested framework; rich plugin ecosystem; spider architecture
JavaScript-heavy automation without framework overheadPlaywright (direct)Lower-level control over browser automation
Sites behind login/auth or aggressive bot protectionNone of the above (build custom)See When NOT to use MarkCrawl; same constraints apply to most public crawlers

Feature comparison

MarkCrawlFireCrawlCrawl4AIScrapy
LicenseMITAGPL-3.0Apache-2.0BSD-3
Installpip install markcrawlSaaS or self-hostpip + Playwrightpip + framework
OutputMarkdown + JSONLMarkdown + JSONMarkdownCustom pipelines
JS renderingOptional (--render-js)Built-inBuilt-inPlugin
LLM extractionOptional add-onVia APIBuilt-inNone
Local-only operationβœ…βŒ (SaaS)βœ…βœ…
Citations + timestamps in outputβœ…Partial❌Manual
Best forSingle-site crawl β†’ clean MarkdownHosted scraping APIAI-native crawlingLarge-scale distributed

MarkCrawl's niche is focused-scope RAG ingestion β€” narrow crawls of docs/blogs/product sites that produce LLM-ready Markdown with minimal junk. For broader scope or bigger scale, the other tools above are stronger choices.

Benchmark results (6 tools, May 2026)

Speed: scrapy+md is fastest (5.0 pages/sec), markcrawl at 2.7. Playwright-based tools average 1.4-2.1 pages/sec.

Output cleanliness: markcrawl has the lowest nav pollution (53 words vs 500+ for others) β€” less junk in your embeddings.

RAG answer quality: markcrawl scores 3.77/5 on answer quality with the fewest chunks (27,193 total, 2.2x fewer than the most), keeping embedding costs low.

ToolChunks/pageAnswer Quality (/5)Annual cost (100K pages, 1K queries/day)
markcrawl18.73.77$4,505
scrapy+md31.73.68$5,464
crawl4ai16.84.72$6,960
colly+md40.64.36$7,213
playwright39.04.48$7,320
crawlee40.54.68$7,467

Full benchmark data: docs/BENCHMARKS.md | Methodology: llm-crawler-benchmarks

Methodology caveat (numbers as of bench v1.4, 2026-05-11): the v1.4 leaderboard sourced test queries from a single high-coverage crawler's output. The bench is actively being updated in v1.5 to source queries from each site's own sitemap independent of any crawler (release notes). Numbers above are single-trial; multi-trial measurement is on the v1.5.1 roadmap. Treat individual rankings as point-in-time signal, not steady-state.

Installation

pip install markcrawl                # Core crawler + chunker + local embedder
                                     # (no API keys required for embedding)

Optional add-ons (tasks beyond the crawl-and-embed core):

pip install markcrawl[js]            # + JavaScript rendering (Playwright)
pip install markcrawl[extract]       # + LLM extraction (OpenAI, Claude, Gemini, Grok)
pip install markcrawl[upload]        # + Supabase upload integration
pip install markcrawl[mcp]           # + MCP server for AI agents
pip install markcrawl[langchain]     # + LangChain tool wrappers
pip install markcrawl[all]           # Everything

For Playwright, also run playwright install chromium after installing.

Lean install (skip the local-embedder dep stack β€” you'll need an OPENAI_API_KEY and pass embedding_model="text-embedding-3-small" for any embedding work):

pip install --no-deps markcrawl beautifulsoup4 lxml markdownify requests certifi tenacity
Install from source (for development)
git clone https://github.com/AIMLPM/markcrawl.git
cd markcrawl
python -m venv .venv
source .venv/bin/activate
pip install -e ".[all]"

Crawling

markcrawl --base https://www.example.com --out ./output --show-progress

Add flags as needed:

markcrawl \
  --base https://www.example.com \
  --out ./output \
  --include-subdomains \        # crawl sub.example.com too
  --render-js \                 # render JavaScript (React, Vue, etc.)
  --concurrency 5 \             # fetch 5 pages in parallel
  --proxy http://proxy:8080 \   # route through a proxy
  --max-pages 200 \             # stop after 200 pages
  --format markdown \           # or "text" for plain text
  --show-progress

Resume an interrupted crawl:

markcrawl --base https://www.example.com --out ./output --resume --show-progress

Output

Each page becomes a .md file with a citation header:

# Getting Started

> URL: https://docs.example.com/getting-started
> Crawled: April 04, 2026
> Citation: Getting Started. docs.example.com. Available at: https://docs.example.com/getting-started [Accessed April 04, 2026].

Welcome to the platform. This guide walks you through installation...

Navigation, footer, cookie banners, and scripts are stripped. Only the main content remains.

All crawler CLI arguments
ArgumentDescription
--baseBase site URL to crawl
--outOutput directory
--formatmarkdown or text (default: markdown)
--show-progressPrint progress and crawl events
--render-jsRender JavaScript with Playwright before extracting
--concurrencyPages to fetch in parallel (default: 1)
--proxyHTTP/HTTPS proxy URL
--resumeResume from saved state
--include-subdomainsInclude subdomains under the base domain
--max-pagesMax pages to save; 0 = unlimited (default: 500)
--delayMinimum delay between requests in seconds (default: 0, adaptive throttle adjusts automatically)
--timeoutPer-request timeout in seconds (default: 15)
--min-wordsSkip pages with fewer words (default: 20)
--user-agentOverride the default user agent
--use-sitemap / --no-sitemapEnable/disable sitemap discovery. Use --no-sitemap when you want to scrape a specific page or subsection β€” without it, large sites (YouTube, GitHub) may discover thousands of unrelated pages via their sitemap
--exclude-pathGlob pattern to exclude URL paths (e.g. '/job/*'). Can be repeated
--include-pathGlob pattern to include URL paths (e.g. '/blog/*'). Only matching paths are crawled. Can be repeated
--dry-runDiscover URLs (via sitemap/links) and print them without fetching content
--smart-sampleAuto-detect templated URL patterns and sample from large clusters instead of crawling every page
--sample-sizePages to sample per templated cluster (default: 5, used with --smart-sample)
--sample-thresholdClusters larger than this are sampled (default: 20, used with --smart-sample)
--auto-resumeAutomatically resume if saved state exists, otherwise start fresh
--cross-dedupSkip pages already seen in previous crawls to the same output directory
--prioritize-linksScore discovered links by predicted content yield β€” crawl high-value pages first
--extractorContent extraction backend: default, trafilatura, ensemble, or readerlm
--download-imagesDownload images from the content area to assets/ and use local paths in Markdown
--min-image-sizeMinimum image file size in bytes to keep (default: 5000). Smaller images are skipped
--i18n-filterSkip URLs under locale path segments (/fr/, /de-DE/, /zh-Hans/, ...) β€” generic, no per-domain config
--title-at-topPrepend # {title} to the text field of every JSONL row when not already present β€” top-MRR RAG recipe

Optional: structured extraction

If you need structured data (not just text), the extraction add-on uses an LLM to pull specific fields from each page.

pip install markcrawl[extract]

markcrawl-extract \
  --jsonl ./output/pages.jsonl \
  --fields company_name pricing features \
  --show-progress

Auto-discover fields across multiple crawled sites:

markcrawl-extract \
  --jsonl ./comp1/pages.jsonl ./comp2/pages.jsonl ./comp3/pages.jsonl \
  --auto-fields \
  --context "competitor pricing analysis" \
  --show-progress

Supports OpenAI, Anthropic (Claude), Google Gemini, and xAI (Grok) via --provider.

Extraction details

Provider and model selection

markcrawl-extract --jsonl ... --fields pricing --provider openai         # default
markcrawl-extract --jsonl ... --fields pricing --provider anthropic      # Claude
markcrawl-extract --jsonl ... --fields pricing --provider gemini         # Gemini
markcrawl-extract --jsonl ... --fields pricing --provider grok           # Grok
markcrawl-extract --jsonl ... --fields pricing --model gpt-4o           # override model
ProviderAPI key env varDefault model
OpenAIOPENAI_API_KEYgpt-4o-mini
AnthropicANTHROPIC_API_KEYclaude-sonnet-4-20250514
Google GeminiGEMINI_API_KEYgemini-2.0-flash
xAI (Grok)XAI_API_KEYgrok-3-mini-fast

All extraction CLI arguments

ArgumentDescription
--jsonlPath(s) to pages.jsonl β€” pass multiple for cross-site analysis
--fieldsField names to extract (space-separated)
--auto-fieldsAuto-discover fields by sampling pages
--contextDescribe your goal for auto-discovery
--sample-sizePages to sample for auto-discovery (default: 3)
--provideropenai, anthropic, gemini, or grok
--modelOverride the default model
--outputOutput path (default: extracted.jsonl)
--delayDelay between LLM calls in seconds (default: 0.25)
--show-progressPrint progress

Output format

Extracted rows include LLM attribution:

{
  "url": "https://competitor.com/pricing",
  "citation": "Pricing. competitor.com. Available at: ... [Accessed April 04, 2026].",
  "pricing_tiers": "Starter ($29/mo), Pro ($99/mo), Enterprise (contact sales)",
  "extracted_by": "gpt-4o-mini (openai)",
  "extraction_note": "Field values were extracted by an LLM and may be interpreted, not verbatim."
}

Optional: Supabase vector search (RAG)

Chunk pages, generate embeddings, and upload to Supabase with pgvector:

pip install markcrawl[upload]

markcrawl --base https://docs.example.com --out ./output --show-progress
markcrawl-upload --jsonl ./output/pages.jsonl --show-progress

Requires SUPABASE_URL, SUPABASE_KEY, and OPENAI_API_KEY. See docs/SUPABASE.md for table setup, query examples, and recommendations.

Optional: agent integrations

MarkCrawl includes integrations for AI agents. Each is an optional add-on.

MCP Server (Claude Desktop, Cursor, Windsurf)
pip install markcrawl[mcp]
{
  "mcpServers": {
    "markcrawl": {
      "command": "python",
      "args": ["-m", "markcrawl.mcp_server"]
    }
  }
}

Tools: crawl_site, list_pages, read_page, search_pages, extract_data

LangChain Tool
pip install markcrawl[langchain]
from markcrawl.langchain import all_tools
from langchain_openai import ChatOpenAI
from langchain.agents import initialize_agent, AgentType

agent = initialize_agent(tools=all_tools, llm=ChatOpenAI(model="gpt-4o-mini"),
                         agent=AgentType.STRUCTURED_CHAT_ZERO_SHOT_REACT_DESCRIPTION)
agent.run("Crawl docs.example.com and summarize their auth guide")
OpenClaw Skill (WhatsApp, Telegram, Slack)
npx clawhub install markcrawl-skill

See AIMLPM/markcrawl-clawhub-skill.

LLM assistant prompt

Copy the system prompt from docs/LLM_PROMPT.md into any LLM to get an assistant that generates correct MarkCrawl commands.

When NOT to use MarkCrawl

  • Sites behind login/auth β€” no cookie or session support
  • Aggressive bot protection (Cloudflare, Akamai) β€” no anti-bot evasion
  • Millions of pages β€” designed for hundreds to low thousands; use Scrapy for scale
  • PDF content β€” HTML only (PDF support is on the roadmap)
  • JavaScript SPAs β€” add markcrawl[js] and use --render-js for React/Vue/Angular
  • Infinite-scroll pages β€” --render-js renders the initial page load but does not scroll; you'll get the first screenful of content (e.g., ~28 of 82 YouTube videos). For complete listings, combine with the platform's API or RSS feed (e.g., YouTube's /feeds/videos.xml?channel_id=...)

Architecture

MarkCrawl is a web crawler. The optional layers (extraction, upload, agents) are separate add-ons that work with the crawler's output.

CORE (free, no API keys)              OPTIONAL ADD-ONS
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ 1. Discover URLs         β”‚          markcrawl[extract]  β€” LLM field extraction
β”‚    (sitemap or links)    β”‚          markcrawl[upload]   β€” Supabase/pgvector RAG
β”‚ 2. Fetch & clean HTML    β”‚          markcrawl[js]       β€” Playwright JS rendering
β”‚ 3. Write Markdown + JSONLβ”‚          markcrawl[mcp]      β€” MCP server for agents
β”‚    + auto-citation       β”‚          markcrawl[langchain] β€” LangChain tools
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

For internals, see docs/ARCHITECTURE.md.

Extending MarkCrawl

from markcrawl import crawl

result = crawl("https://example.com", out_dir="./output")
print(f"Saved {result.pages_saved} pages")
# Process output in your own pipeline
import json
with open(result.index_file) as f:
    for line in f:
        page = json.loads(line)
        your_db.insert(page)  # Pinecone, Weaviate, Elasticsearch, etc.
# Use individual components
from markcrawl import chunk_text
from markcrawl.extract import LLMClient, extract_fields

See docs/ARCHITECTURE.md for the full module map and extensibility guide.

Cost

The core crawler is free. Two optional features have API costs:

FeatureCostWhen
Structured extraction~$0.01-0.03 per pagemarkcrawl-extract
Supabase upload~$0.0001 per pagemarkcrawl-upload

Setting up API keys

Only needed for extraction and upload. The core crawler requires no keys.

# .env β€” in your working directory
OPENAI_API_KEY="sk-..."           # extraction (--provider openai) + upload
ANTHROPIC_API_KEY="sk-ant-..."    # extraction (--provider anthropic)
GEMINI_API_KEY="AI..."            # extraction (--provider gemini)
XAI_API_KEY="xai-..."             # extraction (--provider grok)
SUPABASE_URL="https://..."        # upload
SUPABASE_KEY="eyJ..."             # upload (service-role key)
source .env
Project structure
.
β”œβ”€β”€ README.md
β”œβ”€β”€ LICENSE
β”œβ”€β”€ PRIVACY.md
β”œβ”€β”€ SECURITY.md
β”œβ”€β”€ CONTRIBUTING.md
β”œβ”€β”€ CODE_OF_CONDUCT.md
β”œβ”€β”€ Dockerfile
β”œβ”€β”€ Makefile
β”œβ”€β”€ glama.json
β”œβ”€β”€ pyproject.toml
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ .github/
β”‚   β”œβ”€β”€ pull_request_template.md
β”‚   └── workflows/
β”‚       β”œβ”€β”€ ci.yml
β”‚       └── publish.yml
β”œβ”€β”€ docs/
β”‚   β”œβ”€β”€ ARCHITECTURE.md
β”‚   β”œβ”€β”€ LLM_PROMPT.md
β”‚   β”œβ”€β”€ MCP_SUBMISSION.md
β”‚   β”œβ”€β”€ RAG_RETRIEVAL_RESEARCH.md
β”‚   └── SUPABASE.md
β”œβ”€β”€ tests/
β”‚   β”œβ”€β”€ __init__.py
β”‚   β”œβ”€β”€ test_chunker.py
β”‚   β”œβ”€β”€ test_core.py
β”‚   β”œβ”€β”€ test_extract.py
β”‚   └── test_upload.py
└── markcrawl/
    β”œβ”€β”€ __init__.py
    β”œβ”€β”€ cli.py
    β”œβ”€β”€ core.py               # orchestrator
    β”œβ”€β”€ fetch.py              # HTTP/Playwright fetching
    β”œβ”€β”€ robots.py             # robots.txt parsing
    β”œβ”€β”€ throttle.py           # adaptive rate limiting
    β”œβ”€β”€ state.py              # crawl state & resume
    β”œβ”€β”€ urls.py               # URL normalization & filtering
    β”œβ”€β”€ extract_content.py    # HTML β†’ Markdown conversion
    β”œβ”€β”€ dedup.py              # cross-crawl deduplication
    β”œβ”€β”€ link_scorer.py        # link prioritization
    β”œβ”€β”€ chunker.py
    β”œβ”€β”€ exceptions.py
    β”œβ”€β”€ utils.py
    β”œβ”€β”€ extract.py            # LLM field extraction
    β”œβ”€β”€ extract_cli.py
    β”œβ”€β”€ upload.py
    β”œβ”€β”€ upload_cli.py
    β”œβ”€β”€ langchain.py
    └── mcp_server.py

Roadmap

  • Canonical URL support
  • PDF support
  • Authenticated crawling
  • Multi-provider embeddings
Shipped features
  • pip install markcrawl on PyPI
  • 647 automated tests + GitHub Actions CI (Python 3.10-3.13) + ruff linting
  • Markdown and plain text output with auto-citation
  • Sitemap-first crawling with robots.txt compliance
  • Text chunking with configurable overlap + semantic chunking
  • Supabase/pgvector upload for RAG
  • JavaScript rendering via Playwright
  • Concurrent fetching and proxy support
  • Resume interrupted crawls + auto-resume
  • LLM extraction (OpenAI, Claude, Gemini, Grok) with auto-field discovery
  • MCP server, LangChain tools, OpenClaw skill
  • Image alt text preservation
  • Python API (result.pages)
  • Page-type extraction and content-region heuristics
  • Multiple extraction backends (default, trafilatura, ensemble, ReaderLM-v2)
  • Cross-crawl deduplication (--cross-dedup)
  • Link prioritization by predicted content yield (--prioritize-links)
  • Smart sampling of templated URL clusters (--smart-sample)
  • URL path filtering (--include-path, --exclude-path) and dry-run preview

Project info

  • Contributing β€” see CONTRIBUTING.md. If you used an LLM to generate code, include the prompt in your PR.
  • Security β€” see SECURITY.md for the disclosure policy.
  • Privacy β€” MarkCrawl runs locally. No telemetry, no analytics, no data sent anywhere. See PRIVACY.md.
  • License β€” MIT. See LICENSE.

Related MCP Servers

linxule/mineru-mcp

πŸ“‡ ☁️ - MCP server for MinerU document parsing API. Parse PDFs, images, DOCX, and PPTX with OCR (109 languages), batch processing (200 docs), page ranges, and local file upload. 73% token reduction with structured output.

πŸ”Ž Search & Data Extraction1 views
0xdaef0f/job-searchoor

πŸ“‡ 🏠 - An MCP server for searching job listings with filters for date, keywords, remote work options, and more.

πŸ”Ž Search & Data Extraction0 views
Aas-ee/open-webSearch

🐍 πŸ“‡ ☁️ - Web search using free multi-engine search (NO API KEYS REQUIRED) β€” Supports Bing, Baidu, DuckDuckGo, Brave, Exa, and CSDN.

πŸ”Ž Search & Data Extraction0 views
ac3xx/mcp-servers-kagi

πŸ“‡ ☁️ - Kagi search API integration

πŸ”Ž Search & Data Extraction0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

Last checked: 7/28/2026, 8:06:14 AM

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.