Crawlemoon MCP Server

crawlemoon PyPI v1.1.11

Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.

Advanced Web Crawling Platform with Deep Analysis and MCP Server

Trust grade
B
86/100
Last scanned get badge →
Trust
B · 86/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
B Why this grade threat 94 − adoption risk = 86/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 6.3 = 94. What the published surface and source actually contain:

PointsWhat was foundCategory
−6.3 Unsafe deserialization MTC-SRC-007 permissions

2. Client adoption risk — 94 − 8 = 86. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−2 publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 14

high Tool "execute_js" exposes command/code executionMTC-CAP-001

Tool "execute_js" appears to run shell commands or evaluate code (parameter "script"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool execute_js

high Shell/command execution in server code (src/core/browser/xray.py)MTC-SRC-002

In the server's implementation (`src/core/browser/xray.py:96`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: try: res = subprocess.run([system_cmd, "xray"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True,

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/core/browser/xray.py

high Shell/command execution in server code (src/mcp/server.py)MTC-SRC-002

In the server's implementation (`src/mcp/server.py:1325`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: benchmark processes to spawn (default: 5)", "default": 5 }

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/mcp/server.py

medium Untrusted input can drive an external actionMTC-FLOW-005

Untrusted-input tools ([check_robots, crawl]) co-exist with external-action tools ([stealth_request, execute_js]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [check_robots, crawl] → sinks [stealth_request, execute_js]

Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.

Location: flow check_robots → stealth_request

medium Unconstrained URL/host parameter "url" on "check_robots"MTC-CAP-007

Tool "check_robots" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool check_robots · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "stealth_request"MTC-CAP-007

Tool "stealth_request" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool stealth_request · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "crawl"MTC-CAP-007

Tool "crawl" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool crawl · inputSchema.properties.url

medium Unconstrained command parameter "script" on "execute_js"MTC-CAP-006

Tool "execute_js" takes a command-shaped parameter "script" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool execute_js · inputSchema.properties.script

medium Unsafe deserialization (src/core/cache/manager.py)MTC-SRC-007

In the server's implementation (`src/core/cache/manager.py:74`): Deserializing untrusted data with these APIs can execute arbitrary code (a well-known RCE gadget class). This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: None return pickle.loads(data) except pickle.UnpicklingError as exc: raise CacheSerializ

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/core/cache/manager.py

low Hardcoded egress to an external endpoint in packaging/dev tooling (tests/test_js_analyzer.py)MTC-SRC-003

In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_js_analyzer.py:23`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: code = """ fetch('https://api.example.com/users') fetch("https://api.example.com/posts") """

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server tests/test_js_analyzer.py

low Hardcoded egress to an external endpoint in packaging/dev tooling (tests/test_mcp_server.py)MTC-SRC-003

In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_mcp_server.py:115`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ts = { "code": "fetch('https://api.example.com');", } result = await handle_extract_from_js(argumen

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server tests/test_mcp_server.py

low Mutating tool "execute_js" declares no destructiveHintMTC-CAP-005

Tool "execute_js" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool execute_js

low Dynamic code execution in packaging/dev tooling (tests/test_js_deobfuscator.py)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_js_deobfuscator.py:293`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: function a() { eval(atob("Y29uc29sZS5sb2coJ3Rlc3QnKQ==")); return; console.log("dead code");

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server tests/test_js_deobfuscator.py

low Dynamic code execution in packaging/dev tooling (tests/test_js_security.py)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_js_security.py:34`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: l('1+1')", "new Function('return 1')()", "document.write('xss')", "import('http://ev

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server tests/test_js_security.py

Tools 60

Each tool and what it can reach — statically extracted from the published source.

  • check_robotsingests untrusted input
  • crawlingests untrusted input
  • execute_jsruns code / shell
  • stealth_requestnetwork egress
  • add_proxyno sensitive capability
  • analyze_authno sensitive capability
  • analyze_resourcesno sensitive capability
  • analyze_sitemapno sensitive capability
  • analyze_websocketno sensitive capability
  • check_accessibilityno sensitive capability
Show 50 more tools ↓
  • clear_cacheno sensitive capability
  • compare_pagesno sensitive capability
  • configure_proxiesno sensitive capability
  • configure_rate_limitno sensitive capability
  • configure_xray_subscriptionno sensitive capability
  • convert_to_markdownno sensitive capability
  • deep_analyzeno sensitive capability
  • delete_recordingno sensitive capability
  • deobfuscate_jsno sensitive capability
  • detect_protectionno sensitive capability
  • detect_technologyno sensitive capability
  • discover_apisno sensitive capability
  • execute_cdpno sensitive capability
  • execute_graphqlno sensitive capability
  • export_recordingno sensitive capability
  • extract_articleno sensitive capability
  • extract_formsno sensitive capability
  • extract_from_jsno sensitive capability
  • extract_linksno sensitive capability
  • extract_metadatano sensitive capability
  • extract_tablesno sensitive capability
  • fill_formno sensitive capability
  • generate_crawlerno sensitive capability
  • get_cache_statsno sensitive capability
  • get_cookiesno sensitive capability
  • get_dom_treeno sensitive capability
  • get_proxy_statsno sensitive capability
  • get_rate_limit_statsno sensitive capability
  • get_recording_statusno sensitive capability
  • get_storageno sensitive capability
  • get_xray_statusno sensitive capability
  • health_checkno sensitive capability
  • introspect_graphqlno sensitive capability
  • list_recordingsno sensitive capability
  • list_sessionsno sensitive capability
  • load_sessionno sensitive capability
  • measure_performanceno sensitive capability
  • monitor_networkno sensitive capability
  • record_sessionno sensitive capability
  • remove_proxyno sensitive capability
  • rotate_xray_nodeno sensitive capability
  • save_sessionno sensitive capability
  • smart_extractno sensitive capability
  • solve_captchano sensitive capability
  • stop_recordingno sensitive capability
  • structured_extractno sensitive capability
  • take_screenshotno sensitive capability
  • test_proxyno sensitive capability
  • test_xray_nodesno sensitive capability
  • wait_and_extractno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v1.1.11 latest B 86/100 14 1.13.0 2026-08-25

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: B · 86/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/crawlemoon/badge.svg)](https://mcptrustchecker.com/registry/crawlemoon)
HTML
<a href="https://mcptrustchecker.com/registry/crawlemoon"><img src="https://mcptrustchecker.com/registry/crawlemoon/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/crawlemoon/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan crawlemoon --online --registry pypi

Use the free API → How scoring works

More in Developer Tools