Fetch raw content from a URL. Fast and lightweight - no AI processing.
<when_to_use> Use Fetch when:
- Need raw HTML, JSON, or text from a URL
- Accessing API endpoints directly
- Want content without interpretation
- Saving tokens (no AI processing)
Do NOT use Fetch when:
- Need to extract specific information → use
agentic_fetch - Need to analyze or summarize content → use
agentic_fetch - Want to search the web → use
agentic_fetchwithout URL - Downloading binary files → use
download</when_to_use>
<format_guide>
text: Plain text, best for APIs or simple contentmarkdown: Converted from HTML, good for documentationhtml: Raw HTML structure </format_guide>
Fetch documentation as markdown:
url: "https://docs.example.com/api"
format: "markdown"