fetch_web_content
Extract text content from any public URL by fetching the webpage. Use an optional prompt to filter and return only the most relevant paragraphs.
Instructions
Fetch and extract text content from any public URL.
Args: url: Public HTTP/HTTPS URL to fetch prompt: Optional hint for what to extract. When provided, the content is filtered to prioritize paragraphs most relevant to the prompt keywords. Useful for AI agents to focus on specific content (e.g., "extract code examples only", "summarize the main argument"). max_chars: Maximum characters to return (default 30000)
Returns: Extracted text content from the webpage, optionally filtered by prompt
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| prompt | No | ||
| max_chars | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |