MCP File System Server
@asirulnik
MCP File System Server について
概要はまだありません
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"mcp_server_filesystem_01": {
"command": "python",
"args": [
"-m",
"venv",
"venv"
]
}
}
}ツール
6Lists files and directories in the project directory
Reads the contents of a file
Creates or overwrites files atomically
Adds content to existing files
Removes files from the filesystem
Makes selective edits using pattern matching
概要
What is MCP File System Server?
MCP File System Server is a Model Context Protocol server that enables AI assistants (via Claude Desktop, VSCode/Cline extension, or other MCP-compatible systems) to perform file system operations—read, write, edit, delete—within a specified project directory. It is built for developers who want to collaborate with AI on local codebases through natural-language prompts.
How to use MCP File System Server?
Install the server by cloning the repository and running pip install -e . inside its directory. Then launch it with python -m src.main --project-dir /path/to/project, optionally setting --log-level and --log-file. Add the server’s configuration to your MCP client’s settings (e.g., Claude Desktop’s claude_desktop_config.json or Cline’s cline_mcp_settings.json) and restart the client.
Key features of MCP File System Server
list_directory: list files and directories in the project directoryread_file: read the contents of a filesave_file: atomically create or overwrite files with contentappend_file: append content to an existing filedelete_this_file: permanently delete a file from the filesystemedit_file: make selective edits using pattern matching with diff preview
Use cases of MCP File System Server
- AI-assisted code review and analysis of existing project files
- Generating and writing new files (e.g., scaffolding, configuration) based on natural-language descriptions
- Making targeted edits to source code without rewriting entire files
- Debugging and fixing issues by reading, analyzing, and updating code
- Building complete implementations from specifications through iterative prompting
FAQ from MCP File System Server
What operations does the server support?
It supports six tools: list_directory, read_file, save_file, append_file, delete_this_file, and edit_file (which offers line-based pattern matching and dry-run previews).
What are the runtime requirements?
Python 3 (with a virtual environment recommended) and the dependencies installed via pip install -e .. The server uses FastMCP and can be run on Windows, macOS, or Linux.
Where are logs stored, and how are they formatted?
Standard human-readable logs go to the console. Optionally, structured JSON logs can be written to a file specified with --log-file. Log level is configurable (DEBUG, INFO, WARNING, ERROR, CRITICAL).
How does the server ensure security?
All file paths are normalized and validated to stay within the project directory; path traversal attacks are blocked. Files are written atomically to prevent data corruption, and the --project-dir argument is required.
What transports and authentication are supported?
The server communicates via MCP’s standard transport (stdin/stdout) used by Claude Desktop and Cline. No external API endpoints or authentication are mentioned—access is governed by the MCP client’s auto-approval settings.
「ファイルとストレージ」の他のコンテンツ
MCP Filesystem Server
mark3labsGo server implementing Model Context Protocol (MCP) for filesystem operations.
WORK IN PROGRESS - USE WITH CAUTION - Windows:
hanwegMCP server for working with PDF files
PDF Reader MCP Server (@shtse8/pdf-reader-mcp)
shtse8📄 The PDF intelligence layer for AI agents — Agent Document Twin, evidence-first extraction, visual crops, OCR provenance, trust reports, and benchmark-gated releases. MCP server for Claude, Cursor, VS Code, and any MCP client.
MCP File System Server
MarcusJellinghausMCP Workspace Server: A secure Model Context Protocol server providing file, git, and GitHub tools for AI assistants within a sandboxed project directory.
Claude Document MCP Server
alejandroBallesterosCA lightweight MCP server for processing, editing, and interacting with PDF, Word, Excel, and CSV documents.
コメント