crawlcheck-mcp-server
Click on "Install 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., "@crawlcheck-mcp-serverScan https://example.com for JavaScript errors and broken 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.
crawlcheck-mcp-server
MCP server for crawlcheck. Crawls a website in a real Chromium browser and reports JavaScript console errors, uncaught exceptions, failed requests, broken links, and accessibility violations — classifying console errors and failed requests as first-party (your code) or third-party (embeds and scripts you don't control).
Runs locally over stdio, so crawls use your machine's browser and nobody pays for hosted compute.
Prerequisite
npx playwright install chromiumWithout it the tools return: Chromium is not installed for Playwright. Run: npx playwright install chromium.
Related MCP server: MCP Browser Debugger
Configuration
Claude Desktop / Claude Code — .mcp.json:
{
"mcpServers": {
"crawlcheck": {
"command": "npx",
"args": ["-y", "crawlcheck-mcp-server"]
}
}
}Cursor — same shape in mcp.json.
Tools
Tool | Purpose |
| Crawl a site. Returns a summary, the top 20 issues, and a |
| Check a single page without following links — the fast path for "is this page broken?". |
| Filtered, paginated issues from a completed scan. Reads from cache; never re-crawls, never blocks. |
Typical flow: scan_site for the summary, then get_issues to drill in without re-crawling or
flooding the context window.
Two behaviours worth knowing
Classification is not universal. Only console-error and failed-request carry a
classification, because those are the only issue types for which the engine computes a resource
origin. page-error, broken-link and a11y have no classification field at all — they are
reported as unclassified, which does not mean third-party. crawlcheck_get_issues therefore
defaults to classification: "all"; filtering to "first-party" would silently hide every broken
link and accessibility violation.
One crawl at a time. A second concurrent scan is rejected immediately rather than queued:
A crawl is already running. crawlcheck runs one crawl at a time — wait for the current scan to finish, then retry. If you have a scan_id from an earlier scan, use crawlcheck_get_issues instead; it reads from cache and never blocks.
This is a correctness requirement, not throttling. runCrawl in crawlcheck 0.2.x redirects the
global console.log while crawling (so that progress output can't corrupt this server's JSON-RPC
frames on stdout), and overlapping calls would interleave that redirect. Rejecting beats queueing
because MCP clients time out tool calls anyway, so a queued crawl usually dies waiting.
Exit semantics
summary.exitCode mirrors crawlcheck's process exit code and is only ever 0 or 1. Accessibility
violations are advisory and do not affect it unless strict: true. Third-party console errors and
failed requests are excluded unless include_third_party: true.
Development
npm install # crawlcheck resolves to ../crawlcheck until 0.2.0 is on npm
npm run build # generates src/types/report.v1.d.ts, then compiles
npm test # builds, then runs the unit tests
npm run check:types # regenerate types and fail if they drift from the schema
npm run inspect # MCP Inspector against the built serversrc/types/report.v1.d.ts is generated from crawlcheck's published JSON Schema and committed.
Don't hand-edit it — npm run check:types regenerates and fails on any diff, so a crawlcheck schema
bump can't slip through unnoticed. The only hand-written declaration is runCrawl's signature in
src/types/crawlcheck.d.ts, which deliberately omits crawlcheck's internal raw field so that
reaching for it is a compile error.
Verifying
Unit tests cover ranking, digest limits, cache TTL/LRU, single-flight (including that a failed crawl releases the lock), and error mapping. What they can't cover is a real crawl — for that:
npm run build
npx @modelcontextprotocol/inspector node dist/index.jsIn Inspector v2.x the server appears in a Servers list as Disconnected — flip the toggle beside
it to start the process before the tools show up.
Concurrency is the one behaviour the Inspector can't exercise, because it sends a single tool call at a time. For that:
node test/live-concurrency.mjs [url]It drives the built server over stdio and fires a second crawlcheck_scan_site while the first is
still crawling. Expected: the second is rejected with "A crawl is already running", the first
completes, and a third succeeds afterwards — proving the lock releases rather than wedging the
server. Exits non-zero on failure. Excluded from npm test because it launches a browser and hits
the network.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables interaction with Chromium browser instances through Puppeteer for inspecting dev builds, capturing screenshots, and automating UI interactions. Features permission-gated tools for secure browser navigation, DOM manipulation, and JavaScript evaluation.Last updated221MIT
- FlicenseAqualityDmaintenanceEnables comprehensive web frontend debugging and analysis through DOM inspection, JavaScript execution, network monitoring, console log capture, and automated browser interactions. Supports complete web development workflows including testing, data extraction, and performance analysis.Last updated15
- Flicense-qualityDmaintenanceEnables scanning web pages and entire domains to identify broken links, checking hyperlinks, images, scripts, and other resources. Provides comprehensive link validation with robots.txt compliance and detailed reporting of link status across single pages or complete websites.Last updated
- Flicense-qualityDmaintenanceProvides web crawling and browser automation capabilities with support for multiple content formats (HTML, JSON, PDF, screenshots, Markdown), page content extraction, console message monitoring, and network request tracking.Last updated
Related MCP Connectors
AI QA tester — real browsers scan sites for bugs, SEO, perf, and accessibility issues via chat.
Technical SEO + GEO (AI-search) site audits: hosted crawls, prioritized fixes, report diffs.
Scan URLs for WCAG 2.1 violations, generate AI fixes, and produce VPAT 2.5 compliance reports.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jabeer4148-ops/crawlcheck-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server