This server provides an interface for performing basic file system operations such as navigation, reading, writing, and file analysis, allowing users to manage directories and files efficiently.
MCP server providing file system operations. Supports navigation, reading, writing, analyzing files and command execution.
ls(path)
- List directory contentscd(path)
- Change working directory (supports home directory expansion with ~)read_file(path)
- Read file contentswrite_file(path, content)
- Write content to a filemkdir(path)
- Create directoryrm(path)
- Remove file or empty directoryrmdir(path)
- Remove directory and contents recursivelycp(src, dst)
- Copy file or directorymv(src, dst)
- Move file or directoryedit_file(path, changes)
- Apply multiple search/replace operations to a
file, where changes is a list of (search_text, replace_text) tuplesgrep(pattern, path)
- Search for regex pattern in file(s)summary(path)
- Generate summary of Python (.py) and Markdown (.md) files:
read_files(paths)
- Read multiple files, returns dict mapping paths to contentssummarize(paths)
- Generate summaries for multiple files, returns dict mapping paths to summarieswork_on(path)
- Change to directory, list its contents, and get the notes from CLAUDE.md.
Useful for getting familiar with a project at the start of a chatruff_check(paths)
- Run ruff linter on specified filesruff_format(paths)
- Format files using ruffshell_command(command, args=None, cmdline=None, timeout=30)
- Run shell commands and capture their output
⚠️ Security Warning: This tool allows arbitrary command execution on the host system. Always inspect and validate commands before allowing them to run, especially if the input source is untrusted.
Discover shared experiences
Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!