1Fetches raw content from URL and returns it in specified format without any AI processing.
 2
 3<when_to_use>
 4Use this tool when you need:
 5- Raw, unprocessed content from a URL
 6- Direct access to API responses or JSON data
 7- HTML/text/markdown content without interpretation
 8- Simple, fast content retrieval without analysis
 9- To save tokens by avoiding AI processing
10
11DO NOT use this tool when you need to:
12- Extract specific information from a webpage (use agentic_fetch instead)
13- Answer questions about web content (use agentic_fetch instead)
14- Analyze or summarize web pages (use agentic_fetch instead)
15</when_to_use>
16
17<usage>
18- Provide URL to fetch content from
19- Specify desired output format (text, markdown, or html)
20- Optional timeout for request
21</usage>
22
23<features>
24- Supports three output formats: text, markdown, html
25- Auto-handles HTTP redirects
26- Fast and lightweight - no AI processing
27- Sets reasonable timeouts to prevent hanging
28- Validates input parameters before requests
29</features>
30
31<limitations>
32- Max response size: 5MB
33- Only supports HTTP and HTTPS protocols
34- Cannot handle authentication or cookies
35- Some websites may block automated requests
36- Returns raw content only - no analysis or extraction
37</limitations>
38
39<tips>
40- Use text format for plain text content or simple API responses
41- Use markdown format for content that should be rendered with formatting
42- Use html format when you need raw HTML structure
43- Set appropriate timeouts for potentially slow websites
44- If the user asks to analyze or extract from a page, use agentic_fetch instead
45</tips>