fetch_link_documentation
Extract documentation components, APIs, and usage examples from website links using configurable crawling depth and content selectors.
Instructions
Fetch and analyze documentation from a website link, extracting all available components, APIs, and usage examples
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | How deep to crawl links (0-3, default: 1) | |
selector | No | Optional CSS selector to focus on specific content | body |
url | Yes | The URL to fetch documentation from (e.g., WindUI documentation) |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"default": 1,
"description": "How deep to crawl links (0-3, default: 1)",
"type": "number"
},
"selector": {
"default": "body",
"description": "Optional CSS selector to focus on specific content",
"type": "string"
},
"url": {
"description": "The URL to fetch documentation from (e.g., WindUI documentation)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}