filesystem-mcp-guardrails-fee7c8 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited filesystem-mcp-guardrails-fee7c8 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use when configuring, reviewing, or debugging a local filesystem MCP server — particularly when deciding which paths to expose, which methods to allow, and how to enforce workspace boundaries.
The core constraint is strict path bounding: the MCP server must only operate within explicitly declared workspace roots. No exceptions.
| Principle | Rule |
|---|---|
| Scope | Bind to the project workspace directory only — never /, ~, or OS dirs |
| Access | Start read-only; add write methods only when the use case requires them |
| Methods | Use an allowlist — block delete/move/rename by default |
| Secrets | Never expose .env, credential files, SSH keys, or token stores |
| Approval | Always require user approval before starting a new MCP server process |
Before starting a filesystem MCP server:
/, ~, or any system-level path.read_file, list_directory, search_files).delete_file, move_file, write_file) are explicitly enabled only if required.*.env, *.key, *.pem, *secrets*, .ssh/.The server must return a clear error for any request targeting a path outside declared roots:
Error: path '/etc/passwd' is outside allowed workspace root '/home/user/project'Silent failures or fallback to broader access are not acceptable.
references/path-boundary-checklist.md~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.