Install
openclaw skills install @contextdev/context-devUse Context.dev for live web search, page scraping, crawling, structured extraction, document parsing, screenshots, brand intelligence, design systems, industry classification, monitors, and asynchronous batches. Trigger when a user needs current public-web data, clean Markdown or HTML, typed JSON from websites, company logos or brand details, website change tracking, or high-volume web processing—even when they do not mention Context.dev explicitly.
openclaw skills install @contextdev/context-devUse Context.dev to turn public websites, domains, and documents into structured, agent-ready data.
Read the API key from CONTEXT_API_KEY. Accept CONTEXT_DEV_API_KEY as a legacy fallback. Never print, log, hardcode, or place the key in client-side code.
Use the hosted OAuth MCP server when it is already connected:
https://mcp.context.dev/mcp
Otherwise call the REST API at https://api.context.dev/v1 with Authorization: Bearer <key>.
| User intent | Prefer |
|---|---|
| Find current information or relevant pages | Web search |
| Convert one page to clean Markdown | Scrape Markdown |
| Retrieve rendered source markup | Scrape HTML |
| Discover URLs without fetching every page | Sitemap |
| Collect content across a site | Crawl |
| Extract typed JSON matching a schema | Structured extract |
| Parse a PDF or uploaded document | Parse document |
| Capture a rendered page | Screenshot |
| Retrieve logos, colors, socials, and company metadata | Brand retrieve |
| Retrieve a compact logo-and-color payload | Simplified brand retrieve |
| Extract colors, fonts, spacing, and components | Styleguide |
| Classify a company | NAICS or SIC |
| Track meaningful website changes | Monitors |
| Process many independent requests asynchronously | Batches |
Prefer a known domain or URL over broad search. Prefer sitemap over crawl when only URLs are needed. Prefer direct scrape over crawl for a single page. Do not use a batch for one or two requests.
When Context.dev MCP tools are available:
The catalog includes search, scraping, crawling, extraction, parsing, screenshots, brand data, monitors, and batches. Run openclaw mcp probe context when the expected tools are missing.
Consult the live documentation before guessing a field or enum:
Basic request pattern:
curl -sS "https://api.context.dev/v1/web/scrape/markdown?url=https%3A%2F%2Fexample.com" \
-H "Authorization: Bearer $CONTEXT_API_KEY"
Keep request payloads minimal. Set explicit timeouts for cold crawls and complex extraction. Follow pagination until completion when the user asks for a complete collection.
type and light/dark mode; do not assume the first logo is best.stripe.com where a domain is expected and full HTTPS URLs where a URL is expected.| Status | Response |
|---|---|
| 400 or 422 | Correct the request or report that the input/site cannot be processed. |
| 401 | Ask the user to configure a valid Context.dev credential. |
| 403 | Explain the plan, permission, or quota requirement. |
| 408 | Increase the timeout or retry once when safe. |
| 413 | Reduce the requested content; do not retry unchanged. |
| 429 | Back off exponentially and respect retry guidance. |
| 5xx | Retry a bounded number of times, then report the upstream failure. |
Do not retry validation errors. Do not repeatedly spend credits on an unchanged failing request.
For research and search, include concise findings plus source URLs. For extraction, return JSON matching the requested schema. For scraping, return the requested content format without surrounding filler. For batches and monitors, return the created identifier, current state, and the next command needed to inspect results.