Render
render_pdf
Render a public web page or an inline HTML snippet to a paginated PDF document, using a real headless browser (JS, CSS, and web fonts execute). Use this to turn a URL or HTML into a downloadable/printable PDF, e.g. an invoice, report, or saved article.
Remote vlantukh/skillforge99
Remote (network-hosted)
Other tools also called render_pdf?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Public http(s) URL to render (exactly one of url/html)"
},
"html": {
"type": "string",
"description": "Raw HTML to render (exactly one of url/html, max 1MB)"
},
"width": {
"type": "number",
"description": "Viewport width in pixels, 320-1920 (default 1280)"
},
"height": {
"type": "number",
"description": "Viewport height in pixels, 240-1080 (default 800)"
}
}
}