Local Filesystem Server
БесплатноНе проверенAn MCP server that provides secure access to local file system operations.
Описание
An MCP server that provides secure access to local file system operations.
README
An MCP (Model Context Protocol) server that provides secure access to local file system operations.
Features
- Read Files: Read file contents with configurable encoding
- Write Files: Create or overwrite files
- List Directories: Browse directory contents
- Create Directories: Create new directories (with recursive option)
- Delete Files/Directories: Remove files or directories (with recursive option)
- Move/Rename: Move or rename files and directories
- File Stats: Get detailed file/directory metadata
- Search Files: Search for files matching patterns
Security
The server implements directory-level access control. Only directories specified at startup are accessible, preventing unauthorized access to the rest of the filesystem.
Installation
npm install
npm run build
Usage
Start the server with one or more allowed directories:
node build/index.js /path/to/allowed/dir1 /path/to/allowed/dir2
Or using the binary:
mcp-local-filesystem /path/to/allowed/dir1 /path/to/allowed/dir2
Configuration for Cursor
Add to your MCP settings configuration:
{
"mcpServers": {
"local-filesystem": {
"command": "node",
"args": [
"d:\\FILE_SYSTEM_MCP\\build\\index.js",
"C:\\Users\\YourUsername\\Documents",
"D:\\Projects"
]
}
}
}
Available Tools
read_file
Reads a file from the filesystem.
Parameters:
path(string, required): Path to the fileencoding(string, optional): Encoding to use (utf-8, ascii, base64)
write_file
Writes content to a file (creates or overwrites).
Parameters:
path(string, required): Path to the filecontent(string, required): Content to writeencoding(string, optional): Encoding to use
list_directory
Lists all files and directories in a directory.
Parameters:
path(string, required): Path to the directory
create_directory
Creates a new directory.
Parameters:
path(string, required): Path for the new directoryrecursive(boolean, optional): Create parent directories if needed
delete_path
Deletes a file or directory.
Parameters:
path(string, required): Path to deleterecursive(boolean, optional): Required for non-empty directories
move_path
Moves or renames a file or directory.
Parameters:
source(string, required): Source pathdestination(string, required): Destination path
get_file_stats
Gets detailed information about a file or directory.
Parameters:
path(string, required): Path to the file or directory
search_files
Searches for files matching a pattern.
Parameters:
directory(string, required): Directory to search inpattern(string, required): Filename pattern (supports * and ?)maxResults(number, optional): Maximum results (default: 100)
Resources
The server exposes each allowed directory as a resource with a file:// URI scheme. You can use the ReadResource MCP operation to browse directories and read files.
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode for development
npm run watch
License
MIT
Установка Local Filesystem Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/DAVIDSUSAIRAJ/FILE_SYSTEM_MCPFAQ
Local Filesystem Server MCP бесплатный?
Да, Local Filesystem Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Local Filesystem Server?
Нет, Local Filesystem Server работает без API-ключей и переменных окружения.
Local Filesystem Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Local Filesystem Server в Claude Desktop, Claude Code или Cursor?
Открой Local Filesystem Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Local Filesystem Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
