with one click
competitor-watch
// Extract and compare structured data from competitor or benchmark websites
// Extract and compare structured data from competitor or benchmark websites
Monitor release notes and changelogs from any software project via its web page
Extract structured content from web pages using CF Browser MCP tools
Fetch external documentation sites and convert to local markdown for context
Audit website SEO, links, and accessibility using CF Browser Rendering
Multi-viewport visual QA ā screenshot pages at multiple device sizes and compare
| name | competitor-watch |
| description | Extract and compare structured data from competitor or benchmark websites |
| user_invocable | true |
Extract and compare structured data from multiple websites side-by-side.
CF Browser MCP server must be configured in .mcp.json (see quick start).
Pricing pages, feature matrices, and product comparisons are almost always JS-rendered. This skill uses browser_json and browser_scrape to extract structured data from multiple competitor pages, then generates a comparison.
From user input, determine:
For each competitor page, use the most appropriate tool:
Pricing data:
browser_json(url, prompt="Extract all pricing tiers with: plan name, monthly price, annual price, key features, and limits")
Feature comparison:
browser_json(url, prompt="Extract all features with: feature name, availability (yes/no/limited), and any limits or quotas")
General product info:
browser_scrape(url, selectors=["h1", ".pricing-card", ".feature-list", "[class*=plan]"])
Align extracted data into a consistent schema:
Output a markdown comparison table:
## Competitor Comparison ā {Category}
| | Competitor A | Competitor B | Competitor C |
|---|---|---|---|
| Free tier | 1K requests | 500 requests | None |
| Pro price | $20/mo | $25/mo | $19/mo |
| API rate limit | 100 req/s | 50 req/s | Unlimited |
| Key differentiator | Best DX | Most features | Cheapest |
### Key Insights
- Competitor A leads on developer experience
- Competitor B has the most comprehensive free tier
- Price range: $19-25/mo for pro plans
urls (required): List of competitor URLs or product namesfocus (optional): What to compare ā "pricing", "features", "limits", "all"prompt (optional): Custom extraction prompt for specific data points"Compare Vercel vs Netlify vs Cloudflare Pages pricing"
ā browser_json on each /pricing page ā normalized comparison table
"What features does Cursor have that Copilot doesn't?"
ā Extract feature lists from both ā diff analysis
"Compare the free tiers of Supabase, Firebase, and PlanetScale"
ā Extract pricing/limits ā free tier comparison
"How does our pricing compare to competitors?"
ā Extract your pricing page + competitors ā gap analysis