Beach Safety
Analysis
Review recommended: the beach lookup purpose is coherent, but the setup points mcporter at a hard-coded Python server path outside the managed skill tree.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
The MCP server code lives in `projects/beach-safety-mcp/` (outside the skills tree — safe from clawhub reinstalls). ... "args": ["/Users/evanfoglia/.openclaw/workspace/projects/beach-safety-mcp/src/server.py"]
The recommended runtime path is a hard-coded local Python file outside the managed skill package, so the code mcporter runs may not be the reviewed packaged `src/server.py`.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
return provided_key or os.environ.get("OPENUV_API_KEY", "")The server can read an OpenUV API key from the environment even though the registry metadata lists no required environment variables.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
await client.get("https://nominatim.openstreetmap.org/search", params={"q": q, "format": "json", "limit": 3, "addressdetails": 1,}, headers={"User-Agent": "BeachSafetyMCP/1.0"})The skill sends the user-provided beach search query to external geocoding services as part of its normal lookup flow.
