Web Scout

UrlContentExtractor

Fetches and extracts content from a given webpage URL. Input the URL of the webpage you want to extract content from as a string using the url parameter. You can also input an array of URLs to fetch content from multiple pages at once.

Remote pinkpixel-dev/web-scout-mcp

Other tools also called UrlContentExtractor? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "anyOf": [
        {
          "type": "string",
          "format": "uri",
          "description": "The webpage URL to fetch content from"
        },
        {
          "type": "array",
          "items": {
            "type": "string",
            "format": "uri"
          },
          "minItems": 1,
          "description": "List of webpage URLs to get content from"
        }
      ],
      "description": "URL or list of URLs to fetch"
    }
  }
}