一键导入
content-extractor
Extract structured content from web pages using CF Browser MCP tools
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Extract structured content from web pages using CF Browser MCP tools
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Monitor release notes and changelogs from any software project via its web page
Extract and compare structured data from competitor or benchmark websites
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 | content-extractor |
| description | Extract structured content from web pages using CF Browser MCP tools |
| user_invocable | true |
Extract content from JavaScript-rendered web pages using CF Browser MCP tools.
CF Browser MCP server must be configured in .mcp.json (see quick start).
Analyze the user's intent and select the appropriate mode:
Trigger: "read this page", "get content from", "what does X say"
Tool: browser_markdown
Workflow:
browser_markdown with the URLTrigger: "extract products", "get prices", "pull data from"
Tool: browser_json
Workflow:
browser_json with URL and extraction promptTrigger: "get the headlines", "extract article titles", "find all images"
Tool: browser_scrape
Workflow:
browser_scrape with URL and selectors arrayTrigger: "find all links", "list pages on", "discover URLs"
Tool: browser_links
Workflow:
browser_links with the URLTrigger: "screenshot", "show me what X looks like", "capture page"
Tool: browser_screenshot
Workflow:
browser_screenshot with URL and optional viewport dimensions"Read the Hono documentation homepage"
→ browser_markdown("https://hono.dev")
"Extract all pricing tiers from Vercel"
→ browser_json("https://vercel.com/pricing", prompt="Extract all pricing tiers with name, price, and features")
"Get all h2 headings from this blog post"
→ browser_scrape("https://example.com/blog/post", selectors=["h2"])
"Screenshot the landing page at mobile width"
→ browser_screenshot("https://example.com", width=375, height=812)