read_website
Extract and convert web content to clean Markdown for efficient analysis, documentation reading, and information gathering. Preserves links and structure for clarity and usability.
Instructions
Fast, token-efficient web content extraction - ideal for reading documentation, analyzing content, and gathering information from websites. Converts to clean Markdown while preserving links and structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pages | No | Maximum number of pages to crawl (default: 1) | |
url | Yes | HTTP/HTTPS URL to fetch and convert to markdown |
Input Schema (JSON Schema)
{
"properties": {
"pages": {
"default": 1,
"description": "Maximum number of pages to crawl (default: 1)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"url": {
"description": "HTTP/HTTPS URL to fetch and convert to markdown",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}