Linkup

linkup-fetch

Fetch a URL and return the content of the page. If you are unable to fetch the page content, might be worth trying to render the JavaScript content.

Remote LinkupPlatform/linkup-mcp-server

Other tools also called linkup-fetch? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL to fetch."
    },
    "renderJs": {
      "type": "boolean",
      "default": false,
      "description": "Whether to render the JavaScript content. Only use this if explicitly asked to by the user or if the page content is not available. This will make the request slower."
    },
    "extractImages": {
      "type": "boolean",
      "default": false,
      "description": "Define if the images should be extracted from the page and returned in the response in a dedicated \"images\" field. This is useful when you need to have a list of all images found on the page for further processing or analysis."
    },
    "includeRawHtml": {
      "type": "boolean",
      "default": false,
      "description": "Define if the raw HTML of the page should be included in the response in a dedicated \"rawHtml\" field. This is useful when you need to perform custom HTML parsing, preserve specific formatting, or access elements that might be filtered out during the standard content extraction process."
    }
  }
}
          

Provider

Linkup →