mcp-duckgo

skills-sh:aahl_skills__mcp-duckgo

View source
C
70/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

4

Score

70/100

HIGH 2
LOW 2

Findings (4)

HIGH
Arbitrary MCP server execution
L10

Detects execution of MCP servers from arbitrary paths, URLs, or user-controlled commands

call --stdio 'u
FIX

Block MCP tools from shadowing or overriding built-in tools. Implement tool name uniqueness validation and prevent tools from registering names that conflict with system tools.

FP?

Likely FP if the tool has a name similar to a built-in tool by coincidence (e.g., a search tool) without malicious intent to override system behavior.

HIGH
Arbitrary MCP server execution
L13

Detects execution of MCP servers from arbitrary paths, URLs, or user-controlled commands

call --stdio 'u
FIX

Block MCP tools from shadowing or overriding built-in tools. Implement tool name uniqueness validation and prevent tools from registering names that conflict with system tools.

FP?

Likely FP if the tool has a name similar to a built-in tool by coincidence (e.g., a search tool) without malicious intent to override system behavior.

LOW
npx auto-install without confirmation
L10

Detects npx with -y flag that bypasses user confirmation for package installation

npx -y 
FIX

Replace npx -y with an explicit npm install step that pins the package to a specific version, then run it. Remove the -y flag to require user confirmation.

FP?

Likely FP if the npx command runs a well-known, trusted tool (e.g., create-react-app) in documentation context with no version pinning concern.

LOW
npx auto-install without confirmation
L13

Detects npx with -y flag that bypasses user confirmation for package installation

npx -y 
FIX

Replace npx -y with an explicit npm install step that pins the package to a specific version, then run it. Remove the -y flag to require user confirmation.

FP?

Likely FP if the npx command runs a well-known, trusted tool (e.g., create-react-app) in documentation context with no version pinning concern.