fetch_doc_content
Retrieve web page content and explore linked pages up to a defined depth to extract comprehensive documentation insights for LLMs.
Instructions
Fetch web page content with the ability to explore linked pages up to a specified depth
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Maximum depth of directory/link exploration (default: 1) | |
url | Yes | URL of the web page to fetch |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "Maximum depth of directory/link exploration (default: 1)",
"maximum": 5,
"minimum": 1,
"type": "number"
},
"url": {
"description": "URL of the web page to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}