scrape_images
Extract and download all images from a specified website URL to a local directory. Define the output folder and control concurrent downloads for efficient image scraping using the MCP server.
Instructions
从指定URL爬取网站上的所有图片并保存到本地
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxConcurrent | No | 并发下载数量(可选,默认为5) | |
outputDir | No | 图片保存目录(可选,默认为 ./scraped-images) | |
url | Yes | 要爬取图片的网站URL |
Input Schema (JSON Schema)
{
"properties": {
"maxConcurrent": {
"default": 5,
"description": "并发下载数量(可选,默认为5)",
"type": "number"
},
"outputDir": {
"description": "图片保存目录(可选,默认为 ./scraped-images)",
"type": "string"
},
"url": {
"description": "要爬取图片的网站URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}