DuckDuckGo & Felo AI Search
fetch-url
Fetch and extract the main content from any URL, with customizable extraction options for text, links, and images
Remote OEvortex/ddg_search
Remote (network-hosted)
Other tools also called fetch-url?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL to fetch content from (must be a valid HTTP/HTTPS URL)"
},
"maxLength": {
"type": "integer",
"default": 10000,
"maximum": 50000,
"minimum": 1000,
"description": "Maximum length of content to return in characters (default: 10000)"
},
"excludeTags": {
"type": "array",
"items": {
"type": "string"
},
"description": "HTML tags to exclude from extraction (default: script, style, etc.)"
},
"includeLinks": {
"type": "boolean",
"default": true,
"description": "Whether to include link text in the extracted content (default: true)"
},
"includeImages": {
"type": "boolean",
"default": true,
"description": "Whether to include image alt text in the extracted content (default: true)"
},
"extractMainContent": {
"type": "boolean",
"default": true,
"description": "Whether to attempt to extract main content only, filtering out navigation and ads (default: true)"
}
}
}