OpenWebSearch

fetch_page_content

Fetch and extract content from a web page. Returns the page content in markdown format.

Remote keenable/web-search

Remote (network-hosted)

Other tools also called fetch_page_content? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "The URL to fetch. Example: \"https://example.com\""
    },
    "max_chars": {
      "type": "integer",
      "minimum": 1,
      "description": "Maximum number of characters of content to return. Longer content is truncated. Defaults to 50000 when omitted."
    }
  }
}