DuckDuckGo Search MCP

by OEvortex

fetch-url

Retrieve and parse web page content from a specified URL, allowing control over text length extraction, main content focus, and inclusion of links, images, or specific tag exclusions.

Instructions

Fetch the content of a URL and return it as text, with options to control extraction

Input Schema

NameRequiredDescriptionDefault
excludeTagsNoTags to exclude from extraction (default: script, style, etc.)
extractMainContentNoWhether to attempt to extract main content (default: true)
includeImagesNoWhether to include image alt text (default: true)
includeLinksNoWhether to include link text (default: true)
maxLengthNoMaximum length of content to return (default: 10000)
urlYesThe URL to fetch

Input Schema (JSON Schema)

{ "properties": { "excludeTags": { "description": "Tags to exclude from extraction (default: script, style, etc.)", "items": { "type": "string" }, "type": "array" }, "extractMainContent": { "default": true, "description": "Whether to attempt to extract main content (default: true)", "type": "boolean" }, "includeImages": { "default": true, "description": "Whether to include image alt text (default: true)", "type": "boolean" }, "includeLinks": { "default": true, "description": "Whether to include link text (default: true)", "type": "boolean" }, "maxLength": { "default": 10000, "description": "Maximum length of content to return (default: 10000)", "maximum": 50000, "minimum": 1000, "type": "integer" }, "url": { "description": "The URL to fetch", "type": "string" } }, "required": [ "url" ], "type": "object" }

You must be authenticated.

Other Tools from DuckDuckGo Search MCP

Related Tools

    ID: 9jttvbc23e