batch-web-scraper

mcphub-com/batch-web-scraper

3.5

batch-web-scraper is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.

If you are the rightful owner of batch-web-scraper and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Batch Web Scraper MCP is designed to efficiently scrape multiple web pages in parallel, providing content in either Markdown or HTML format.

Try batch-web-scraper with chat:

Server config via mcphub

Tools
1
Resources
0
Prompts
0

Batch Web Scraper MCP

MCP for scraping multiple web pages in parallel and retrieving their content in either Markdown or HTML format.

Tools

batch_scrape

Scrape multiple web pages concurrently.

FieldTypeRequiredDescription
urlsstring[]✅ YesAn array of up to 10 URL strings to scrape.
timeoutintegerNoThe number of seconds (default 15) to wait for each page to load.
formatstringNoOutput format: "markdown" (default) or "html".
Example
{
  "urls": [
    "https://example.com",
    "https://github.com/modelcontextprotocol/python-sdk"
  ]
}
Response

A JSON array of page contents. Each item corresponds to a URL in the request and contains either the scraped content or an empty string (if a timeout or error occurred).