mcphub-com/batch-web-scraper
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
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.
Field | Type | Required | Description |
---|---|---|---|
urls | string[] | ✅ Yes | An array of up to 10 URL strings to scrape. |
timeout | integer | No | The number of seconds (default 15 ) to wait for each page to load. |
format | string | No | Output 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).