OpenWebSearch
web_fetch
Purpose: Fetch and extract relevant content from specific web URLs. Ideal Use Cases: - Extracting content from specific URLs you've already identified - Exploring URLs returned by a web search in greater depth
Remote parallel/search
Other tools also called web_fetch?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"urls": {
"type": "array",
"items": {
"type": "string"
},
"title": "Urls",
"description": "List of URLs to extract content from. Must be valid\nHTTP/HTTPS URLs. Maximum 10 URLs per request."
},
"objective": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Objective",
"default": null,
"description": "Natural-language description of what\ninformation you're looking for from the URLs. Limit to 200 characters."
}
}
}