A versatile, secure file server implementing the Model Context Protocol (MCP) that provides AI assistants with safe file operations. Features multiple connection modes, configurable access levels, and comprehensive security controls for various deployment scenarios.
- Comprehensive File Operations: Create, read, write, delete, copy, move, rename files and directories
- Advanced Text Manipulation: Line-specific operations, search and replace, pattern matching
- File Analysis: Size, permissions, timestamps, hash verification, diff generation
- Batch Operations: Handle multiple files efficiently in single operations
- Archive Support: Create and extract ZIP files
- Format Conversion: Text to PDF, image format conversion, CSV β JSON
- Multiple Connection Modes: stdio, HTTP, and public access via ngrok
- Tiered Access Control: Read-only, Read/Write, and Admin permission levels
- Security First: All operations restricted to configured safe directories
# Using uv (recommended)
uv tool install fastmcp-file-server
# Using pip
pip install fastmcp-file-server
git clone https://github.com/Luxshan2000/Local-File-MCP-Server.git
cd Local-File-MCP-Server
uv sync
# Set allowed directory
export MCP_ALLOWED_PATH="/path/to/your/files"
# Start stdio server (for Claude Desktop)
fastmcp-file-server
# Start HTTP server
fastmcp-file-server-http
# Start HTTP server bypassing security warning (not recommended)
fastmcp-file-server-http --ignore-keys
# Set admin key for HTTP mode
export MCP_ADMIN_KEY="your-secret-token"
export MCP_HTTP_PORT=8082
fastmcp-file-server-http
Variable | Default | Description |
---|---|---|
MCP_ALLOWED_PATH |
./allowed |
Directory path for file operations |
MCP_HTTP_PORT |
8082 |
HTTP server port |
MCP_READ_KEY |
None |
Read-only access token |
MCP_WRITE_KEY |
None |
Read/write access token |
MCP_ADMIN_KEY |
None |
Admin access token (includes delete) |
MCP_MAX_FILE_SIZE |
10485760 |
Maximum file size in bytes (10MB) |
MCP_ALLOWED_EXTENSIONS |
.txt,.json,.md,... |
Allowed file extensions (comma-separated) |
Create a .env
file in your project root:
# Required: Safe directory for file operations
MCP_ALLOWED_PATH=/absolute/path/to/your/files
# Optional: HTTP server settings
MCP_HTTP_PORT=8082
# Optional: Multi-tier authentication tokens
MCP_READ_KEY=readonly-token-here
MCP_WRITE_KEY=readwrite-token-here
MCP_ADMIN_KEY=admin-token-here
# Optional: File restrictions
MCP_MAX_FILE_SIZE=10485760
MCP_ALLOWED_EXTENSIONS=.txt,.json,.md,.csv,.log,.xml,.yaml,.yml,.conf,.cfg,.zip,.pdf,.jpg,.png
Configuration file locations:
- macOS:
~/Library/Application Support/Claude/config.json
- Windows:
%APPDATA%\Claude\config.json
{
"mcpServers": {
"local-file-server": {
"command": "fastmcp-file-server",
"env": {
"MCP_ALLOWED_PATH": "/absolute/path/to/your/allowed/directory"
}
}
}
}
- Start the HTTP server:
export MCP_ADMIN_KEY="your-secret-token"
fastmcp-file-server-http
- Configure Claude Desktop:
{
"mcpServers": {
"local-file-server-http": {
"transport": "http",
"url": "http://127.0.0.1:8082/mcp",
"headers": {
"Authorization": "Bearer your-secret-token"
}
}
}
}
For environments requiring a proxy:
# Install mcp-remote
npm install -g mcp-remote
{
"mcpServers": {
"local-file-server-proxy": {
"command": "npx",
"args": [
"mcp-remote",
"http://127.0.0.1:8082/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer your-secret-token"
}
}
}
}
For web-based AI systems (ChatGPT, etc.):
# Terminal 1: Start authenticated HTTP server
export MCP_ADMIN_KEY="your-secret-token"
export MCP_HTTP_PORT=8082
fastmcp-file-server-http
# Terminal 2: Expose publicly via ngrok
ngrok http 8082
Use the ngrok URL in your web-based AI system:
- URL:
https://abc123.ngrok.io/mcp
- Header:
Authorization: Bearer your-secret-token
When starting the HTTP server without any authentication tokens configured, the system will display a security warning and prompt for confirmation. This prevents accidentally running an unprotected server.
# This will trigger a security warning:
fastmcp-file-server-http
# To bypass the warning (not recommended):
fastmcp-file-server-http --ignore-keys
- With Keys: When ANY token is set (
MCP_READ_KEY
,MCP_WRITE_KEY
, orMCP_ADMIN_KEY
), all HTTP requests require theAuthorization: Bearer <token>
header - Without Keys: If NO tokens are set, the server runs without authentication (use only in secure environments)
- Multi-tier Access: Different tokens provide different permission levels
- Temporary Exposure: For ngrok or temporary remote access, always use strong tokens and revoke access when done
- Key Rotation: Regularly rotate your tokens, especially after temporary exposures
- No Tokens Set: Server runs without authentication (stdio mode safe, HTTP local only)
- Read Token:
MCP_READ_KEY
- File listing, reading, searching, comparison operations - Write Token:
MCP_WRITE_KEY
- All read operations plus create, modify, copy, move, convert - Admin Token:
MCP_ADMIN_KEY
- All operations including file and directory deletion
- Never commit secrets: Use
.env
files (added to.gitignore
) - Use strong tokens: Generate cryptographically secure random tokens (
openssl rand -hex 32
) - Limit access scope: Set
MCP_ALLOWED_PATH
to the minimum required directory - Choose appropriate token level: Use read-only tokens for analysis, admin only when deletion needed
- Monitor usage: Check logs for unauthorized access attempts
- Temporary access: Unset all tokens and restart after temporary exposures
# Basic operations
"Create a file called notes.txt with my meeting notes"
"Read lines 10-20 from config.py"
"Copy config.json to backup/config_backup.json"
# Advanced operations
"Search for 'TODO' comments in all Python files"
"Replace 'old_function' with 'new_function' in utils.py"
"Create a ZIP archive of all source files"
"Convert report.txt to PDF format"
"Calculate SHA256 hash of important_file.pdf"
"Read all .py files in the src/ directory"
"Create these 5 configuration files with their content"
"Delete all .tmp files in the workspace"
"Find all JavaScript files containing 'console.log'"
See DEVELOPER.md for detailed development setup and contribution guidelines.
# Clone repository
git clone https://github.com/Luxshan2000/Local-File-MCP-Server.git
cd Local-File-MCP-Server
# Install dependencies
uv sync
# Run development server
uv run server # stdio mode
uv run server-http # HTTP mode
# Run tests and linting
uv run test
uv run lint
uv run format
Tool | Description | Access Level |
---|---|---|
read_file |
Read file contents or specific line ranges | Read-only |
write_file |
Create or overwrite files | Read/Write |
append_file |
Append content to existing files | Read/Write |
delete_file |
Remove files and directories | Admin |
copy_file |
Copy files and directories | Read/Write |
move_file |
Move/rename files and directories | Read/Write |
list_directory |
List directory contents with filtering | Read-only |
create_directory |
Create new directories | Read/Write |
get_file_info |
Get file metadata and permissions | Read-only |
search_files |
Search for files by name patterns | Read-only |
search_content |
Search file contents with regex | Read-only |
replace_content |
Find and replace text in files | Read/Write |
insert_lines |
Insert text at specific line numbers | Read/Write |
delete_lines |
Remove specific line ranges | Read/Write |
compare_files |
Generate diffs between files | Read-only |
create_archive |
Create ZIP archives | Read/Write |
extract_archive |
Extract ZIP archives | Read/Write |
calculate_hash |
Generate file hashes (MD5, SHA1, SHA256) | Read-only |
convert_document |
Convert text to PDF | Read/Write |
convert_image |
Convert between image formats | Read/Write |
convert_data |
Convert between CSV and JSON | Read/Write |
Server won't start:
# Reinstall dependencies
uv sync
# Check Python version
python --version # Requires Python 3.10+
Claude Desktop not connecting:
- Verify all paths in configuration are absolute (full paths)
- Restart Claude Desktop after changing configuration
- Check server starts without errors:
uv run server
- Ensure
MCP_ALLOWED_PATH
directory exists and is accessible
HTTP authentication fails:
- Verify
MCP_ADMIN_KEY
is set before starting server - Check Authorization header format:
Bearer your-secret-token
- Ensure token matches exactly (no extra spaces)
Permission denied errors:
- Check file/directory permissions
- Verify
MCP_ALLOWED_PATH
is accessible - Ensure user has read/write permissions in the allowed directory
This project is licensed under the MIT License - see the LICENSE file for details.
We welcome contributions! Please see DEVELOPER.md for development setup and CODE_OF_CONDUCT.md for community guidelines.
- Repository: https://github.com/Luxshan2000/Local-File-MCP-Server
- PyPI Package: https://pypi.org/project/fastmcp-file-server/
- Issues: https://github.com/Luxshan2000/Local-File-MCP-Server/issues
- Model Context Protocol: https://modelcontextprotocol.io/
If you find this project useful, please consider giving it a star on GitHub!