Trust Assessment
zhipu-mcp-tools received a trust score of 69/100, placing it in the Caution category. This skill has some security considerations that users should review before deployment.
SkillShield's automated analysis identified 4 findings: 0 critical, 1 high, 2 medium, and 1 low severity. Key findings include Missing required field: name, Unpinned npm dependency version, Node lockfile missing.
The analysis covered 4 layers: Manifest Analysis, Static Code Analysis, Dependency Graph, LLM Behavioral Safety. All layers scored 70 or above, reflecting consistent security practices.
Last analyzed on February 13, 2026 (commit 13146e6a). SkillShield performs automated 4-layer security analysis on AI skills and MCP servers.
Layer Breakdown
Behavioral Risk Signals
Security Findings4
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| HIGH | Arbitrary File Read via analyzeImage function The `analyzeImage` function in `index.js` directly uses `fs.readFileSync` with a user-provided `imagePath` parameter. If the `imagePath` does not start with 'http', it is treated as a local file path. An attacker can supply a path like `/etc/passwd` or `C:\Windows\System32\drivers\etc\hosts` to read arbitrary files from the system where the skill is executed. The content of the read file is then base64 encoded and sent to the `http://localhost:8000/execute` endpoint, potentially exfiltrating sensitive data. Implement strict validation for `imagePath`. Before calling `fs.readFileSync`, ensure the path is within an allowed directory (e.g., a temporary upload directory) and sanitize it to prevent directory traversal attacks (e.g., `../`). Alternatively, if local file access is not intended for arbitrary paths, restrict `imagePath` to only accept URLs or specific internal identifiers. | LLM | index.js:46 | |
| MEDIUM | Missing required field: name The 'name' field is required for claude_code skills but is missing from frontmatter. Add a 'name' field to the SKILL.md frontmatter. | Static | skills/deepmindomega/zhipu-mcp-tools/SKILL.md:1 | |
| MEDIUM | Unpinned npm dependency version Dependency 'axios' is not pinned to an exact version ('^1.6.0'). Pin dependencies to exact versions to reduce drift and supply-chain risk. | Dependencies | skills/deepmindomega/zhipu-mcp-tools/package.json | |
| LOW | Node lockfile missing package.json is present but no lockfile was found (package-lock.json, pnpm-lock.yaml, or yarn.lock). Commit a lockfile for deterministic dependency resolution. | Dependencies | skills/deepmindomega/zhipu-mcp-tools/package.json |
Scan History
Embed Code
[](https://skillshield.io/report/a84de9a33adee5c2)
Powered by SkillShield