MCPFileManagerTest
Verified Safeby rem5357
Overview
Provides an MCP server for AI agents to store, retrieve, and organize files in a project-based structure.
Installation
cargo build --release && ./target/release/mcp-file-managerEnvironment Variables
- FILE_MANAGER_ROOT
Security Notes
The server implements robust path traversal protection and uses parameterized queries to prevent SQL injection. File deletion operations (project, folder, file) require explicit confirmation flags, enhancing safety. Input validation is performed for filenames and folder paths, including length limits and forbidden characters. The default HTTP transport uses permissive CORS, which is acceptable for local/internal development or agent interaction but would require stricter configuration for public-facing deployments. Overall, good security practices are evident for its intended file management functionality.
Similar Servers
mcp-filesystem-server
Provides secure and controlled access to the local filesystem via the Model Context Protocol (MCP) for AI agents and other applications.
codex-mcp-skills
Manages, validates, analyzes, and synchronizes AI skills and configurations for Claude Code and Codex CLI, also serving them to MCP clients and running subagents.
skrills
A versatile tool to manage, validate, analyze, and synchronize AI skills and agent configurations for Claude Code and Codex CLI, running as an MCP server.
filesystem-mcp
Provides secure, efficient, and token-optimized filesystem operations for AI agents via the Model Context Protocol.