Fetch raw homepage content for a URL
fetch_homepage_contentScrape a brand's homepage and return the raw extracted content — title, meta description, headings (h1/h2/h3), meta tags, primary body text (truncated ~5000 chars), and call-to-action labels — so you (Claude) can reason over it directly to infer the brand's positioning, audience, services, and unique selling points.
This is the preferred way to build a value-prop doc: call fetch_homepage_content, read the content yourself, then distill it into the 9-section template the web app also uses — elevatorPitch, whoWeAre, currentClientBase, problemsWeSolve, clientJourney, servicesAndPricing, philosophy, usp, taglines (array of 1-5) — and call update_value_prop_doc({ brandId, elevatorPitch, whoWeAre, currentClientBase, problemsWeSolve, clientJourney, servicesAndPricing, philosophy, usp, taglines }) to persist it. No server-side LLM call happens here — you do the reasoning.
Typical flow: create_brand → fetch_homepage_content({ url: brand.website }) → analyze the returned content → update_value_prop_doc with your distilled 9-section doc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Homepage URL to scrape (https:// required). |