Jarvis MCP Filesystem

PassAudited by ClawScan on May 10, 2026.

Overview

This skill transparently gives the agent read/list/search access to files inside the OpenClaw workspace, with no evidence of hidden persistence, credentials, or exfiltration.

This appears safe for its stated purpose if you want the agent to access files in /root/.openclaw/workspace. Before installing, make sure that directory does not contain private files you do not want the agent to read, and verify the npm package source/version because the dependency code was not included in the review.

Findings (2)

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.

What this means

The agent may be able to read and summarize files located in the configured workspace.

Why it was flagged

The skill exposes filesystem tools that can read file contents, list directories, search files, and inspect metadata. This matches the stated purpose and is shown as scoped to a workspace, but users should notice the agent can inspect workspace files.

Skill content
Через `mcporter call --stdio "mcp-server-filesystem <root>" <tool> <args>` ... `read_file`, `list_directory`, `search_files`, `get_file_info`
Recommendation

Use this only with a workspace directory you are comfortable exposing to the agent, and verify that the MCP server root remains limited to the intended folder.

What this means

Installing the dependency will run and trust code from the npm package selected at install time.

Why it was flagged

The setup instruction installs a global npm package without a pinned version. This is purpose-aligned for an MCP filesystem skill, but the package contents and exact version are outside the provided artifacts.

Skill content
npm install -g mcp-server-filesystem
Recommendation

Install from a trusted npm source, consider pinning or verifying the package version, and review the package provenance if using it in a sensitive environment.