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.

Trust grade
D
61/100
Last scanned
Trust
D · 61/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
Critical
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.
D Why this grade threat 76 − adoption risk = 61/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 − 23.8 = 76. What the published surface and source actually contain:

PointsWhat was foundCategory
−15.4 Obfuscated / encoded payload in server code MTC-SRC-004 injection
−6.3 Unsafe deserialization MTC-SRC-007 permissions
−2.1 Package has no source repository MTC-SUP-011 supply-chain

2. Client adoption risk — 76 − 15 = 61. 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
−10 capability blast radius (critical) — client exposure if the model is manipulated
−5 publisher verification (unlocatable) — no provenance and no public repository to inspect
inspection depth (source) — how much of the target the scan could see

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 55

high Obfuscated / encoded payload in server code (tests/test_js_deobfuscator.py)MTC-SRC-004

In the server's implementation (`tests/test_js_deobfuscator.py:34`): Decoding an encoded blob and executing it is how malicious logic is hidden from human review of the source. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: eval(atob

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

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 Dynamic code execution in server code (src/intelligence/js/deobfuscator.py)MTC-SRC-001

In the server's implementation (`src/intelligence/js/deobfuscator.py:68`): 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: eval(

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/intelligence/js/deobfuscator.py

high Dynamic code execution in server code (tests/test_js_deobfuscator.py)MTC-SRC-001

In the server's implementation (`tests/test_js_deobfuscator.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: eval(

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

high Dynamic code execution in server code (tests/test_js_security.py)MTC-SRC-001

In the server's implementation (`tests/test_js_security.py:33`): 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: eval(

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

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: subprocess.run(

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: spawn (

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 ([deep_analyze, discover_apis, introspect_graphql, analyze_websocket, record_session, analyze_auth, detect_protection, save_session, analyze_sitemap, check_robots, take_screenshot, extract_article, solve_captcha, detect_technology, smart_extract, convert_to_markdown, stealth_request, get_rate_limit_stats, add_proxy, remove_proxy, test_proxy, execute_graphql, execute_js, get_cookies, get_storage, extract_links, extract_forms, extract_metadata, extract_tables, execute_cdp, get_dom_tree, measure_performance, analyze_resources, check_accessibility, monitor_network, fill_form, wait_and_extract, crawl, structured_extract, configure_xray_subscription, test_xray_nodes]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

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

medium Hardcoded egress to an external endpoint (tests/test_js_analyzer.py)MTC-SRC-003

In the server's implementation (`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: fetch('https://api.example.com/users'

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

medium Hardcoded egress to an external endpoint (tests/test_mcp_server.py)MTC-SRC-003

In the server's implementation (`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: fetch('https://api.example.com'

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

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

Tool "deep_analyze" 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 deep_analyze · inputSchema.properties.url

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

Tool "discover_apis" 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 discover_apis · inputSchema.properties.url

medium Unconstrained URL/host parameter "endpoint" on "introspect_graphql"MTC-CAP-007

Tool "introspect_graphql" takes a URL/host parameter "endpoint" 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 introspect_graphql · inputSchema.properties.endpoint

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

Tool "analyze_websocket" 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 analyze_websocket · inputSchema.properties.url

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

Tool "record_session" 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 record_session · inputSchema.properties.url

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

Tool "analyze_auth" 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 analyze_auth · inputSchema.properties.url

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

Tool "detect_protection" 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 detect_protection · inputSchema.properties.url

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

Tool "save_session" 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 save_session · inputSchema.properties.url

medium Unconstrained URL/host parameter "sitemap_url" on "analyze_sitemap"MTC-CAP-007

Tool "analyze_sitemap" takes a URL/host parameter "sitemap_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 analyze_sitemap · inputSchema.properties.sitemap_url

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 "take_screenshot"MTC-CAP-007

Tool "take_screenshot" 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 take_screenshot · inputSchema.properties.url

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

Tool "extract_article" 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 extract_article · inputSchema.properties.url

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

Tool "solve_captcha" 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 solve_captcha · inputSchema.properties.url

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

Tool "detect_technology" 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 detect_technology · inputSchema.properties.url

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

Tool "smart_extract" 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 smart_extract · inputSchema.properties.url

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

Tool "convert_to_markdown" 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 convert_to_markdown · 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 "proxy_url" on "add_proxy"MTC-CAP-007

Tool "add_proxy" takes a URL/host parameter "proxy_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 add_proxy · inputSchema.properties.proxy_url

medium Unconstrained URL/host parameter "proxy_url" on "remove_proxy"MTC-CAP-007

Tool "remove_proxy" takes a URL/host parameter "proxy_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 remove_proxy · inputSchema.properties.proxy_url

medium Unconstrained URL/host parameter "proxy_url" on "test_proxy"MTC-CAP-007

Tool "test_proxy" takes a URL/host parameter "proxy_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 test_proxy · inputSchema.properties.proxy_url

medium Unconstrained URL/host parameter "test_url" on "test_proxy"MTC-CAP-007

Tool "test_proxy" takes a URL/host parameter "test_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 test_proxy · inputSchema.properties.test_url

medium Unconstrained URL/host parameter "endpoint" on "execute_graphql"MTC-CAP-007

Tool "execute_graphql" takes a URL/host parameter "endpoint" 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 execute_graphql · inputSchema.properties.endpoint

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

Tool "execute_js" 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 execute_js · inputSchema.properties.url

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

Tool "get_cookies" 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 get_cookies · inputSchema.properties.url

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

Tool "get_storage" 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 get_storage · inputSchema.properties.url

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

Tool "extract_links" 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 extract_links · inputSchema.properties.url

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

Tool "extract_forms" 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 extract_forms · inputSchema.properties.url

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

Tool "extract_metadata" 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 extract_metadata · inputSchema.properties.url

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

Tool "extract_tables" 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 extract_tables · inputSchema.properties.url

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

Tool "execute_cdp" 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 execute_cdp · inputSchema.properties.url

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

Tool "get_dom_tree" 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 get_dom_tree · inputSchema.properties.url

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

Tool "measure_performance" 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 measure_performance · inputSchema.properties.url

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

Tool "analyze_resources" 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 analyze_resources · inputSchema.properties.url

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

Tool "check_accessibility" 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_accessibility · inputSchema.properties.url

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

Tool "monitor_network" 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 monitor_network · inputSchema.properties.url

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

Tool "fill_form" 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 fill_form · inputSchema.properties.url

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

Tool "wait_and_extract" 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 wait_and_extract · 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 URL/host parameter "url" on "structured_extract"MTC-CAP-007

Tool "structured_extract" 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 structured_extract · inputSchema.properties.url

medium Unconstrained URL/host parameter "subscription_url" on "configure_xray_subscription"MTC-CAP-007

Tool "configure_xray_subscription" takes a URL/host parameter "subscription_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 configure_xray_subscription · inputSchema.properties.subscription_url

medium Unconstrained URL/host parameter "test_url" on "test_xray_nodes"MTC-CAP-007

Tool "test_xray_nodes" takes a URL/host parameter "test_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 test_xray_nodes · inputSchema.properties.test_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: pickle.loads(

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 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 Package has no source repositoryMTC-SUP-011

"crawlemoon" declares no repository URL, so its published artifact cannot be compared against reviewable source.

Fix: Prefer packages that link to public, reviewable source.

Location: package crawlemoon

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

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 D 61/100 55 1.7.0 2026-07-23

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: D · 61/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