Local Files MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Local Files MCP Servershow me the contents of ~/projects/notes.txt"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Local Files MCP Server
A Model Context Protocol (MCP) server for managing local files. Provides tools for reading, writing, analyzing, searching, and organizing files with built-in safety protections.
Features
📖 Read/Write files - UTF-8 and base64 support
📂 Directory operations - List, organize, search
🔍 Content search - Regex pattern matching
🔎 Find duplicates - MD5 hash comparison
📊 File analysis - Size, MIME type, line counts
🛡️ Safety protections - Configurable allowed/protected paths
🖥️ Cross-platform - macOS, Linux, Windows
Installation
NPX
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"local-files": {
"command": "npx",
"args": ["-y", "fsorg"]
}
}
}That's it! Claude Desktop will automatically download and run the MCP server via npx.
Alternative: Install from source
git clone https://github.com/argtobias/fsorg.git
cd fsorg
pnpm install
pnpm buildThen configure Claude Desktop:
{
"mcpServers": {
"local-files": {
"command": "node",
"args": ["/path/to/fsorg/dist/index.js"]
}
}
}Safety Configuration
Create a config file at:
-- macOS/Linux: ~/.config/localfiles-org/config.json
-- Windows: %LOCALAPPDATA%\localfiles-org\config.json
{
"allowedPaths": [
"~/projects",
"~/Development",
"~/workspace",
"/tmp"
],
"additionalProtectedPaths": [
"~/my-important-folder"
],
"additionalProtectedPatterns": [
"^backup",
"\\.bak$"
]
}Configuration Options
Option | Description | Default |
| Paths where delete operations are permitted |
|
| Extra paths to protect from deletion |
|
| Regex patterns for protected file names |
|
Always Protected (cannot be overridden)
System paths:
/,/etc,/usr,/bin,/System, etc.User paths:
~,~/Documents,~/Desktop,~/Downloads,~/.sshPatterns:
.git,.env,.ssh, credentials, secrets
Available Tools
File Operations
Tool | Description |
| Read file contents (UTF-8 or base64) |
| Write content to file (UTF-8 or base64) |
| Safely delete a file with protection checks |
| Move file with optional empty directory cleanup |
| Get file stats (size, MIME, lines, words) |
Directory Operations
Tool | Description |
| List files with optional recursion and glob patterns |
| Safely delete directory (requires confirmation for recursive) |
| Organize files into folders by extension/date/size |
Search Operations
Tool | Description |
| Search for regex patterns in file contents |
| Find duplicate files by MD5 hash |
| Sort lines in a file |
Batch Operations
Tool | Description |
| Batch rename files using regex patterns |
Usage Examples
Read a file
{
"tool": "read_file",
"arguments": {
"path": "~/projects/myfile.txt"
}
}Find and delete duplicates
{
"tool": "find_duplicates",
"arguments": {
"path": "~/projects/images",
"recursive": true
}
}Safely delete with preview
{
"tool": "delete_file",
"arguments": {
"path": "~/projects/temp/old-file.txt",
"preview": true
}
}Organize files by extension
{
"tool": "organize_by_type",
# Local Files MCP Server
Simple MCP server for safe local file operations: read, write, search, organize and protected delete.
## Quick install
Run via npx (recommended for Claude Desktop):
```json
{
"mcpServers": {
"local-files": {
"command": "npx",
"args": ["-y", "fsorg"]
}
}
}From source:
git clone https://github.com/argtobias/fsorg.git
cd fsorg
pnpm install
pnpm buildConfiguration
Create user config at:
macOS/Linux:
~/.config/localfiles-org/config.jsonWindows:
%LOCALAPPDATA%\\localfiles-org\\config.json
Minimal config example:
{
"allowedPaths": ["~/projects", "~/Development"],
"additionalProtectedPaths": [],
"additionalProtectedPatterns": []
}Safety
Only operations inside
allowedPathscan delete files.System and user-critical paths are always protected.
Pattern-based protection (e.g.
.git,.env) is enforced.
Usage examples
Read a file:
{ "tool": "read_file", "arguments": { "path": "~/projects/myfile.txt" } }Find duplicates:
{ "tool": "find_duplicates", "arguments": { "path": "~/projects/images", "recursive": true } }Delete with preview (safe):
{ "tool": "delete_file", "arguments": { "path": "~/projects/temp/old.txt", "preview": true } }Development
pnpm install
pnpm build
pnpm devLicense
ISC
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TobiasArg/LocalFilesOrganizer-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server