Filesystem
Use the local filesystem connected through Edge Tunnel to read, create, edit, and move files and directories.
Key Features
- Read files and read multiple files at once
- Create, overwrite, and line-edit files
- Create directories and browse directory lists or trees
- Move files and directories
- Search files and inspect metadata
Basic Information
Authentication Method
No separate authentication is required.
Supported Scope
This integration only works inside allowed directories accessible through Edge Tunnel.
Supported MCP Tools
File Reading Tools
read_file
Reads the full content of a single file or selected head/tail lines.
read_multiple_files
Reads multiple files in a single request.
get_file_info
Retrieves metadata for a file or directory, such as size, creation and modification times, and permissions.
File Modification Tools
write_file
Creates a new file or completely overwrites an existing file.
edit_file
Finds exact matching text, applies line-based edits, and returns a diff.
move_file
Moves or renames a file or directory.
Directory Tools
create_directory
Creates a new directory. Nested directories can be created in one operation.
list_directory
Lists files and directories under the specified path.
list_directory_with_sizes
Lists files and directories under the specified path with size information.
directory_tree
Retrieves the directory tree under the specified path as a JSON structure.
search_files
Searches for files or directories whose names match a pattern under the specified path.
Usage Examples
For example,
- when you input a prompt like “Find the README file in the project folder and summarize it”,
- the LLM calls the
search_filesandread_filetools through MCP to find and read the file, - then responds in the chat based on the tool call results.
Notes
- Paths outside allowed directories cannot be accessed.
write_file,edit_file, andmove_filecan modify file contents or paths, so review the request before using them.- Operations may be restricted by the Edge Tunnel connection state and local filesystem permissions.