fetch-html
Extract HTML content from any URL or convert web pages to text-only format for streamlined processing and analysis with the MCP URL Fetcher server.
Instructions
Fetch content from any URL and convert to HTML format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
extractText | No | Whether to extract text content only (default: false) | |
url | Yes | URL to fetch content from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"extractText": {
"description": "Whether to extract text content only (default: false)",
"type": "boolean"
},
"url": {
"description": "URL to fetch content from",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}