@crawlbrulee/mcp
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@crawlbrulee/mcpScrape the product page at https://crawlbrulee.com and return markdown with links"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ฎ crawlbrulee mcp
EU-native web scraping for AI agents & developers.
plug crawlbrulee into your agent. the official mcp server for crawlbrulee gives mcp-aware agents โ Claude Code, Codex, Cursor, Claude Desktop โ native tools to scrape pages, map sites, run background jobs, and check usage. one call turns any url into clean markdown, screenshots, metadata and links.
everything runs in the EU. the fetch, the render, the cache and your result never leave EU servers. the proxy exit is the one hop you choose: pick an EU exit and nothing leaves at all. gdpr-aligned, with a data processing agreement.
output made for models. markdown with the page chrome stripped and the links kept, ready for the prompt. full-page screenshots can come back as tiles sized for an image model.
the hard parts, handled. headless Chrome when a page needs it, rotating proxies with country selection, automatic retries, ad and cookie-banner removal, caching, background jobs and signed webhooks.
start free. 750 credits, no credit card.
get a free api key โ dashboard.crawlbrulee.com
the server:
npx-runnable โ zero install.wraps the
@crawlbrulee/sdkunder the hood; this mcp is just a thin protocol adapter.stdio transport for terminal-based agents.
strict, fully-described tool schemas โ agents see what every parameter does without reading docs.
this readme covers the mcp server itself โ its tools and how to wire it into a host. for how the api behaves โ endpoints, parameters, and error semantics โ please see our api docs.
install
# Claude Code
claude mcp add crawlbrulee \
--env CRAWLBRULEE_API_KEY=cwbl_... \
-- npx -y @crawlbrulee/mcp
# Cursor โ add to ~/.cursor/mcp.json:
{
"mcpServers": {
"crawlbrulee": {
"command": "npx",
"args": ["-y", "@crawlbrulee/mcp"],
"env": { "CRAWLBRULEE_API_KEY": "cwbl_..." }
}
}
}the same pattern works for Codex, Claude Desktop, and any other host that
accepts a stdio mcp launch command โ set command: npx, args: ["-y", "@crawlbrulee/mcp"], and forward CRAWLBRULEE_API_KEY via the env block.
Related MCP server: Anybrowse
configuration
env var | required | description |
| yes | api key sent as |
the mcp reads the env var on first tool invocation โ not at startup โ so a typo in your config surfaces as a clear tool-error message rather than the server failing to come up. see authentication for how the api consumes keys.
tools
scrape
fetch a single url and return the requested content (markdown, cleaned html, raw html, links, images, screenshot, page metadata).
input โ only url is required; everything else has sane defaults.
{
"url": "https://example.com",
"extract": {
"markdown": true,
"links": true,
"screenshot": { "type": "full_page", "device_mode": "desktop" },
},
"require_js": false,
"proxy": "basic",
"cleanup": { "ads_and_popups": true, "exclude_selectors": ["nav", "footer"] },
"cache": { "max_age": 3600 },
"location": { "locale": "en-US", "country": "US" },
}output โ full scrape result. page metadata (title, OG tags, etc.) is returned under metadata. extracted images are returned as absolute urls โ query strings are preserved, and relative srcs are resolved against the page url. screenshots are returned as signed download urls the agent can fetch separately. in rare cases a screenshot can't be captured: when you requested other outputs too, the screenshot field is simply left out while the rest is still returned โ but a screenshot-only call that can't deliver errors instead (unsupported_screenshot_output, HTTP 422, when the content type can't be screenshotted) and isn't billed. the result also carries a top-level response_meta.usage block:
{
"url": "https://example.com",
"markdown": "...",
"metadata": { "title": "Example Domain" },
"response_meta": {
"usage": {
"credits": 1,
"engine": "http", // "http" | "browser" | "screenshot" | "cache"
"proxy": "basic", // resolved tier actually used: "basic" | "advanced" (never "auto")
"screenshot_slices": 0, // 1 when the screenshot-split add-on was billed, otherwise 0
},
},
}alongside response_meta.usage, the result surfaces any non-fatal warnings โ stable string codes an agent can switch on. an outsized page is truncated rather than refused, and the code names which part was cut:
code | what it means for the payload |
| the page was taller than the scrolling-capture height cap; the screenshot covers the top of the page. |
| the page had more than 30,000 links; the |
| the page had more than 10,000 inline images; the |
| the page body exceeded 10,000,000 characters; |
| the page head exceeded 2,000,000 characters; |
and if you requested an extract that doesn't apply to the content type (e.g. markdown of a pdf), the field name comes back in an unsupported_fields list โ with the rest of the payload still returned.
every input field, its default, and its constraints are documented under the scrape endpoint โ with extraction, screenshots, proxies & location, and caching covering the individual blocks.
scrape_async
submit a scrape job to run asynchronously and get back a job_id immediately, instead of holding the connection open. use this for long-running scrapes (heavy js rendering, full-page screenshots of long pages); for a quick one-shot fetch prefer the synchronous scrape tool. then poll scrape_status until the job is done and fetch the page with scrape_result.
takes the same input as scrape plus an optional per-job completion webhook:
{
"url": "https://example.com",
"extract": { "markdown": true },
"webhook": {
// Endpoint that receives one signed `scrape.complete` POST when the job
// finishes. http/https (HTTPS required in production), max 2048 chars.
"url": "https://hooks.example.com/cwbl",
// Opaque correlation object echoed back verbatim in the delivery's
// `data.metadata`. Serializes to at most 2048 bytes.
"metadata": { "ref": "order-42" },
},
}output โ { "job_id": "..." }.
when a webhook is attached, we deliver a single signed scrape.complete POST to your endpoint once the job reaches a terminal state, with your metadata echoed under data.metadata and the job's usage under data.response_meta.usage โ so you can react to completion (and track cost) without polling. verify the X-Cwbl-Signature header with the sdk's verifyWebhookSignature (configure the signing secret in the dashboard under account โ webhooks).
the job lifecycle is documented under async scrape; the delivery contract and payload shape under webhooks, with the signature scheme in webhook verification.
scrape_status
look up the current lifecycle status of an async job: pending, running, done, or failed (with an error message when failed). once the job is done the response also carries a response_meta.usage block (credits, billed engine, resolved proxy tier, screenshot_slices). a cache hit is represented by engine: "cache". poll until done, then call scrape_result.
{ "job_id": "..." }scrape_result
fetch the extracted content of a completed async job โ the same result shape as the synchronous scrape tool (including metadata and response_meta.usage). errors if the job is still pending/running, so check scrape_status first.
{ "job_id": "..." }map
build (or fetch a cached) link-map for a website. combines sitemap discovery with homepage link extraction. use this to enumerate a site before scraping selected pages. each link is just { url }.
max_urls (default 5000, max 100000) is a discovery budget, not a trim at the end โ discovery stops as soon as that many urls are found, so a smaller value is a faster, cheaper crawl. limit (default 5000, max 10000) only pages the answer.
returned urls are normalized the same way scrape normalizes its returned url, so map-then-scrape stays on one host. results are ordered with the most useful links first.
the response's response_meta carries pagination, truncation, and a usage block (credits, billed engine, resolved proxy tier). map responses do not include screenshot-slice accounting.
{
"url": "https://example.com",
"sitemap_only": false,
"types": { "internal": true, "external": false, "internal_subdomains": true },
"max_urls": 5000,
"page": 1,
"limit": 1000,
}a map stopped by your own max_urls returns exactly that many links with response_capped: false โ the signal that the site has more is truncation.discovery_cap_reason:
{
"truncation": {
"storage_capped": false,
"response_capped": false,
"total_before_max_urls": 5000,
"total_detected_before_storage_cap": 5000,
"discovery_capped": true, // discovery stopped before reading every sitemap file
"sitemaps_skipped": 3, // files skipped or only partly read
"discovery_cap_reason": "max_urls", // retry with a higher max_urls
},
}discovery_cap_reason is one of max_urls, time, file_budget, depth, file_size, unread_files, or null when nothing stopped discovery. only max_urls is a limit you can raise from the request. unread_files means a sitemap file the site publishes could not be read at all this time โ often temporary, so asking again later can return more. time, file_budget, depth and file_size mean the site itself is big, slow or deep, and a retry will not help.
see the map endpoint for discovery rules and pagination semantics.
usage
returns the current billing-cycle snapshot: total / used / available credits, used quota percent, max concurrency, and cycle reset timestamp. takes no arguments. what a call costs, and how credits are counted, is documented under credits & pricing.
whoami
returns the organization name, token name, and truncated token preview for the configured api key. useful for confirming which account is in use before credit-consuming operations.
errors
every tool returns an mcp error result (isError: true) when the api call fails. the error text follows a stable format:
[<errorName>] <message> (HTTP <status>)agents can branch on the errorName code. the set comes from the sdk's ApiErrorName union plus two synthetic codes added by this mcp (missing_api_key, internal_error):
code | meaning |
|
|
| server rejected the api key (revoked, wrong env, etc.). |
| temporary backend failure (HTTP 503). your key is fine โ retry with backoff. |
| rate limit hit โ back off and retry. |
| plan credit / concurrency cap exceeded. show |
| input failed server validation. |
| target url was rejected before fetching. |
| target url is on the blocklist. |
| origin's anti-bot defenses blocked the fetch. |
| origin redirected the fetch in a loop (HTTP 422). the target's doing โ don't retry blindly. |
| the page's html was too large to process (HTTP 422). terminal โ never retry it. |
| origin returned an error during scraping. |
| screenshot-only request on a content type that can't be screenshotted (HTTP 422). not billed. |
| async job ID unknown (e.g. bad |
| network / read timeout. safe to retry. |
| caller cancelled before completion. |
| unhandled server-side failure. |
| sdk error without a typed name. |
| bug in this mcp โ please open an issue. |
the api docs carry the canonical error reference โ every error name, what causes it, and how to recover.
development
pnpm install
pnpm typecheck # tsc --noEmit
pnpm lint # eslint
pnpm test # vitest run
pnpm build # tsup โ dist/index.js with shebang
pnpm verify # all of the aboverun the built mcp locally:
CRAWLBRULEE_API_KEY=cwbl_... node ./dist/index.jsit will block waiting for an mcp client on stdio. combine with the MCP Inspector for interactive debugging.
docs
this readme covers the mcp server itself โ installing it, wiring it into a host, and the tools it exposes. for how the api behaves โ endpoints, parameters, and error semantics โ the api docs are canonical. the mcp guide covers host setup in more depth.
part of the crawlbrulee toolkit
one api, many ways to call it:
js/ts sdk โ
@crawlbrulee/sdk(the sdk this mcp wraps)python sdk โ
crawlbruleeon pypicli โ
npx crawlbruleemcp server โ
@crawlbrulee/mcp(this one)agent skills โ for skills-aware coding agents
docs: crawlbrulee.com/docs ยท dashboard: dashboard.crawlbrulee.com
license
This server cannot be deployed
Maintenance
Related MCP Connectors
Cloud scraping & crawling API for AI agents. Turn any URL into clean, LLM-ready markdown.
Scrape, crawl and search the web for AI agents via MCP.
- mcpOAuthcom.screenshotink
Screenshot, diff, audit and sitemap-capture any web page โ 5 MCP tools for AI agents.
Web scraping for AI agents: scrape, search, crawl, map any website to markdown + JSON. No browser.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceWeb scraping MCP server for Al agents. 6 tools: extract clean text/markdown from any URL, structured scraping with CSS selectors, full-page screenshots via Playwright, link extraction with regex filtering, metadata extraction (OG tags, Twitter cards), and Google search. Free tier: 50 requests/IP/day.8MIT
- AlicenseAqualityDmaintenanceMCP-native web scraping and search API for AI agents. Converts any URL to clean Markdown with 90% success rate, including Cloudflare-protected sites and JS SPAs. Real-time web search via Brave Search API. CAPTCHA solving built-in. 10 free scrapes/day.505MIT
- AlicenseAqualityCmaintenanceAn APAC-native web scraping API for AI agents that provides tools for scraping, crawling, searching, and extracting structured data from websites, directly usable from MCP-compatible clients like Claude Desktop, Cursor, and Windsurf.74 npmMIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to interact with any website through MCP, providing structured knowledge graph contexts, generated actions, and readiness scoring.-