Filesystem MCP Server
@ai-yliu
关于 Filesystem MCP Server
A Model Context Protocol (MCP) server that provides filesystem operations for Claude AI
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"filesystem-mcp-server-ai-yliu": {
"command": "node",
"args": [
"build/index.js",
"/path/to/allowed/dir1",
"/path/to/allowed/dir2"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Filesystem MCP Server?
Filesystem MCP Server is a Model Context Protocol server that provides filesystem operations for Claude AI. It allows AI models to read, write, list, move, search, and get metadata about files and directories within explicitly allowed directories.
How to use Filesystem MCP Server?
Install dependencies with npm install, build with npm run build, then run the server specifying one or more allowed directories as command‑line arguments (e.g., node build/index.js /path/to/allowed/dir1 /path/to/allowed/dir2). Configure it in your MCP client’s JSON configuration file.
Key features of Filesystem MCP Server
- Read complete file contents with UTF‑8 encoding
- Write new files or overwrite existing ones
- Create directories (including parent directories)
- List directory contents with [FILE] or [DIR] prefixes
- Move or rename files and directories
- Recursively search for files/directories with case‑insensitive matching
- Get detailed file metadata (size, times, permissions)
- List all directories the server is allowed to access
Use cases of Filesystem MCP Server
- AI assistants reading local text files to answer user questions
- Writing configuration files or scripts from AI‑generated content
- Browsing directory structures to understand project layouts
- Searching for files by name across a codebase
- Moving or organizing files within approved directories
FAQ from Filesystem MCP Server
What filesystem operations does this server support?
It supports reading, writing, creating directories, listing, moving, searching, and getting file metadata. Specific tools include read_file, read_multiple_files, write_file, create_directory, list_directory, move_file, search_files, get_file_info, and list_allowed_directories.
How does the server enforce security?
The server only allows operations within directories specified via command‑line arguments. No operations are permitted outside those allowed directories.
What are the runtime requirements?
Node.js is required. Install dependencies with npm install and build with npm run build before running.
Can the server read multiple files at once?
Yes, the read_multiple_files tool accepts an array of paths and reads them simultaneously. Failed reads do not stop the entire operation.
How do I configure the server with my MCP client?
Add an entry to your MCP configuration file that specifies the command (node), the path to the built index.js, and the allowed directory paths. Optionally set disabled and autoApprove.
文件与存储 分类下的更多 MCP 服务器
MCP Filesystem Server
mark3labsGo server implementing Model Context Protocol (MCP) for filesystem operations.
mcp-v8: V8 JavaScript MCP Server
r33drichardsMCP server that exposes a V8 JavaScript runtime as a tool for AI agents like Claude and Cursor. Supports persistent heap snapshots via S3 or local filesystem, and is ready for integration with modern AI development environments.
Bulk Filesystem Operations MCP Server
strawgateMCP Server for reading many files at the same time
Mcp Directory
chatmcpdirectory for Awesome MCP Servers
Filesystem MCP Server SSE
ysthinkThe SSE version of the MCP service is modified from the Filesystem MCP server
评论