MCP Server Fetch TypeScript
by tatn
get_rendered_html
Fetches fully rendered HTML content using a headless browser, including JavaScript-generated content. Essential for modern web applications, single-page applications (SPAs), or any content that requires client-side rendering to be complete.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL of the target web page that requires JavaScript execution or dynamic content rendering. |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL of the target web page that requires JavaScript execution or dynamic content rendering.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}