unique-mcp-builder-test

clawhub:unique-mcp-builder-test

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

8

Score

77/100

HIGH 1
MEDIUM 1
LOW 6

Findings (8)

HIGH
Runtime URL controls agent behavior
L61

Detects skills fetching external URLs to use as runtime instructions

WebFetch to load `https://raw.githubusercontent.com + prompt
FIX

Pin the downloaded resource to a specific version or commit hash, and verify its integrity with a checksum (SHA-256). Avoid fetching scripts or binaries from arbitrary URLs at runtime.

FP?

Likely FP if the download URL points to a well-known CDN or package registry (e.g., npmjs.com, pypi.org) and is pinned to a specific version.

MEDIUM
Remote SDK or script fetch as agent input
L61

Detects fetching remote documentation or code to load as agent context

WebFetch to load  + https://modelcontextprotocol.io/specification/draft.md
FIX

Pin the SDK or script to a specific version and verify its checksum after download. Prefer installing SDKs via a package manager instead of fetching remote scripts directly.

FP?

Likely FP if the match is documentation showing how to install an official SDK (e.g., Google Cloud SDK, AWS CLI) from its canonical URL.

LOW
Runtime URL controlling behavior
L61

Detects URLs fetched at runtime that control or influence agent behavior without pinning

Fetch to load `https:// + prompt
FIX

Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.

FP?

Likely FP if the URL in the match is a documentation link or example URL (e.g., example.com) rather than an actual runtime-fetched configuration endpoint.

LOW
Mutable GitHub raw content reference
L61

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Mutable GitHub raw content reference
L65

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Unverified npx package execution
L141

Detects npx executing packages from unverified sources without pinned versions

npx @modelcontextprotocol/inspector`
FIX

Pin the npx package to an exact version (e.g., npx @scope/package@1.2.3). Unversioned npx commands can silently install a different or malicious package version.

FP?

Likely FP if the npx command targets a well-known package in documentation context, though unpinned versions are a real supply chain concern.

LOW
Mutable GitHub raw content reference
L212

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Mutable GitHub raw content reference
L213

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.