scrape_webpage
Extract webpage content for analysis or storage. Specify a URL to scrape and optionally save the output as a TXT file using the FullScope-MCP server.
Instructions
抓取网页内容,可选保存为txt文件
Args:
url: 要抓取的网页URL
save_to_file: 是否保存内容到txt文件
Returns:
抓取结果和文件路径(如果保存)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
save_to_file | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"save_to_file": {
"default": false,
"title": "Save To File",
"type": "boolean"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "scrape_webpageArguments",
"type": "object"
}