ref_read_url
Extracts and converts webpage content into markdown format using a provided URL. Ideal for processing documentation links from 'ref_search_documentation' results for easy reading and integration.
Instructions
Read the content of a url as markdown. The entire exact URL from a Ref 'ref_search_documentation' result should be passed to this tool to read it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL of the webpage to read. |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "The URL of the webpage to read.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}