Filesystem MCP Server
Предоставляет безопасный доступ к локальной файловой системе через Model Context Protocol. Позволяет AI-агентам читать, записывать, искать и управлять файлами и каталогами с настраиваемыми ограничениями доступа. Поддерживает чтение содержимого файлов, создание каталогов, перемещение файлов и поиск по glob-шаблонам.
Описание переведено автоматически и пока не проверено редактором.
Подключение
Добавьте эту конфигурацию в .claude/mcp.json
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Инструменты (6)
read_file
Read the complete contents of a file from the filesystem. Returns the file content as UTF-8 text.
{
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"description": "Absolute path to the file to read"
}
}
}write_file
Write content to a file, creating it if it does not exist or overwriting if it does.
{
"type": "object",
"required": [
"path",
"content"
],
"properties": {
"path": {
"type": "string",
"description": "Absolute path to the file to write"
},
"content": {
"type": "string",
"description": "Content to write to the file"
}
}
}list_directory
List the contents of a directory, returning file and subdirectory names.
{
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"description": "Absolute path to the directory to list"
}
}
}create_directory
Create a new directory, including any necessary parent directories.
{
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"description": "Absolute path of the directory to create"
}
}
}move_file
Move or rename a file or directory from one location to another.
{
"type": "object",
"required": [
"source",
"destination"
],
"properties": {
"source": {
"type": "string",
"description": "Source path of the file or directory"
},
"destination": {
"type": "string",
"description": "Destination path"
}
}
}search_files
Search for files matching a glob pattern within a directory tree.
{
"type": "object",
"required": [
"path",
"pattern"
],
"properties": {
"path": {
"type": "string",
"description": "Base directory to search from"
},
"pattern": {
"type": "string",
"description": "Glob pattern to match files against"
}
}
}Ресурсы (1)
file:///{path}Access to files on the local filesystem within allowed directories.
Промпты
Этот сервер не предоставляет промпты.
Сведения о сервере
- Лицензия
- Apache-2.0
- Версия
- 2026.1.26
- Звёзды
- 86,206
- Последнее обновление
- 27 января 2026 г.