download_pdf
Download PDF files from specified URLs using optional NCCN login credentials. Ideal for accessing National Comprehensive Cancer Network clinical guidelines directly.
Instructions
Download a PDF file from the specified URL, with optional NCCN login credentials.
Args:
url: The URL of the PDF file to download
filename: Optional custom filename for the downloaded file
username: Optional NCCN username/email for authentication (defaults to NCCN_USERNAME env var)
password: Optional NCCN password for authentication (defaults to NCCN_PASSWORD env var)
Returns:
String indicating success/failure and the path to the downloaded file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "download_pdfArguments",
"type": "object"
}