LaunchKit · 2026
Back to Skills

filesystem-mcp

Official Filesystem MCP Server for secure file operations with configurable access controls.

4
2.6k downloads
by @buddhasource

Setup & Installation

openclaw skills install @buddhasource/filesystem-mcp

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install filesystem-mcp

What This Skill Does

MCP server that gives AI agents sandboxed access to local files and directories. Supports reading, writing, editing, moving, deleting, and searching files within explicitly allowed paths. Access controls block directory traversal and system file access at the server level.

Unlike direct filesystem access, it enforces directory sandboxing and path validation without requiring custom permission logic in each agent.

When to use it

  • Reading project source files before generating code changes
  • Scanning error logs to identify recurring failures
  • Organizing downloaded files into categorized folders
  • Writing generated documentation to a local docs directory
  • Searching a codebase for all files matching a name pattern

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Analyze our app error logs and summarize the issues

AGENT
  1. 1Lists files in the application log directory
  2. 2Reads the contents of the error log file
  3. 3Searches for files containing ERROR pattern across the log directory
  4. 4Generates a summary of identified issues and patterns
  5. 5Writes the summary report to a markdown file
OUTPUT

Error summary written to /reports/error-summary.md with categorized issues and counts