read_full_article
Extract the full content of any article using its URL. Designed for developers, this tool helps retrieve complete articles from high-quality, developer-curated blogs and newsletters.
Instructions
Returns the full content of an article identified by its URL.
Args: url: The URL of the article to read.
Returns: str: The full content of the article or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}