crawl_web_page
Extract and process data from multiple web pages by providing a list of URLs using the Hubble MCP Server's integrated tool for efficient web crawling.
Instructions
웹 페이지 크롤링
args:
url_list: List[str], 크롤링할 웹 페이지 리스트
returns:
dict[Any] | None: 크롤링 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url_list | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url_list": {
"items": {
"type": "string"
},
"title": "Url List",
"type": "array"
}
},
"required": [
"url_list"
],
"title": "crawl_web_pageArguments",
"type": "object"
}