WWeavely.ai Forms and SurveysAn MCP service for generating smart forms and surveys using natural language prompts via the Weavely API, returning a live editor link for immediate customization.

mcp-so:weavely_weavely

View source
B
85/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

2

Score

85/100

HIGH 1
LOW 1

Findings (2)

HIGH
Fetch URL and use as instructions
L18

Detects fetching external URLs and using the content as agent instructions or rules

prompts via the Weavely API
FIX

Sanitize or validate all external inputs (file contents, API responses, user messages) before including them in prompts or tool calls. Implement input/output boundaries between trusted and untrusted data.

FP?

Likely FP if the matched text is the skill's own instruction set describing how to handle user input, not an actual injection payload.

LOW
npx MCP server without version pin
L58

Detects MCP server configs using npx to run packages without version pinning

"command": "npx"
FIX

Pin the npx package in the MCP config to an exact version (e.g., @scope/server@1.2.3). Unpinned npx commands can silently fetch a compromised package version.

FP?

Likely FP if the MCP config is a local development setup example, though unpinned npx in production configs is a real supply chain risk.