MCP File Server
@Priyonuj
关于 MCP File Server
A secure Model Context Protocol (MCP) server for file system operations. Enables AI assistants like Claude and Cursor to access, read, write, and manage files on your system with robust path validation and dynamic storage location management.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"file-server": {
"command": "node",
"args": [
"/path/to/mcp-file-server/mcp_server.js"
],
"disabled": false,
"autoApprove": [
"list_files",
"read_file",
"write_file",
"delete_file",
"set_base_directory",
"get_base_directory",
"git_command"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP File Server?
MCP File Server is a Node.js application that implements a Model Context Protocol server for secure, standardized file system operations. It is designed for integration with AI assistants like Claude and developer tools like Cursor.
How to use MCP File Server?
Install with npm install, then start with npm start. Configure via BASE_DIRECTORY environment variable or set the base directory directly from chat using the set_base_directory tool. Git commands can be executed through the git_command tool. Add the server as an MCP server in Claude Desktop or Cursor using a JSON configuration object.
Key features of MCP File Server
- Secure file operations with robust path validation against directory traversal
- Read, write, list, and delete files via MCP tools
- Execute Git commands directly from chat interface
- Set and get base directory without restarting the server
- Operations logged to a dedicated file for auditability
- Modular architecture for easy extension with new services
Use cases of MCP File Server
- AI assistants managing files on a user’s local machine
- Developer tools like Cursor accessing project files securely
- Automated file operations in chat-based workflows
- Running Git commands (status, log, branch) from an AI chat interface
- Centralized file management across different directories without restart
FAQ from MCP File Server
What are the prerequisites for MCP File Server?
Node.js version 16 or higher, npm or yarn, and Git (for Git functionality).
How do I set the base directory from chat?
Use the set_base_directory tool by asking the AI assistant, for example “Set the base directory to C:/Users/username/Documents”. Provide an absolute path.
What security features does MCP File Server include?
It performs robust path validation to prevent directory traversal attacks, normalizes and resolves file paths carefully, validates commands to prevent injection, and logs all operations to a debug file.
Can MCP File Server be extended with new functionality?
Yes. The modular architecture allows adding new services in the services/ directory, registering new tools in toolService.js, and updating mcp_server.js.
How do I integrate MCP File Server with Claude Desktop or Cursor?
Add a JSON configuration object like the one in the README under “Configuration Object Example”, specifying the command, script path, and auto-approved tools.
文件与存储 分类下的更多 MCP 服务器
Filesystem
chrisdocManage your Hevy workouts, routines, folders, and exercise templates. Create and update sessions faster, organize plans, and search exercises to build workouts quickly. Stay synced with changes so your training log is always up to date.
MCP Filesystem Server
mark3labsGo server implementing Model Context Protocol (MCP) for filesystem operations.

Google Drive
modelcontextprotocolModel Context Protocol Servers
Google Drive server
isaacphiModel Context Protocol (MCP) Server for reading from Google Drive and editing Google Sheets
Filesystem MCP Server SSE
ysthinkThe SSE version of the MCP service is modified from the Filesystem MCP server
评论