Cross-Platform Filesystem MCP Server
Enables comprehensive filesystem operations across Linux, macOS, and Windows with platform-aware command execution, secure path restrictions, and intelligent adaptations for file search, directory management, and shell commands specific to each operating system.
README
Cross-Platform Filesystem MCP Server
A comprehensive filesystem MCP server that works across Linux, macOS, and Windows platforms with intelligent platform-specific adaptations.
🌍 Platform Support
✅ Supported Platforms
- Linux - Full support with Unix-style commands
- macOS - Full support with Unix-style commands
- Windows - Full support with Windows-specific commands
- FreeBSD/OpenBSD - Basic support
🔧 Platform-Specific Features
Linux (/home/, /tmp/, /opt/, /usr/local/, /etc/)
- Uses
findfor file search - Unix-style permissions and ownership
- Standard shell commands via
/bin/bash - Package manager paths included
macOS (/Users/, /tmp/, /opt/homebrew/, /usr/local/)
- Uses
findfor file search - Unix-style permissions and ownership
- Homebrew paths for both Intel and Apple Silicon
- Standard shell commands via
/bin/bash
Windows (C:\Users\, C:\temp\, C:\tmp\, D:\)
- Uses
dirfor file search with recursion - Windows-style paths and permissions
- Commands via
cmd.exe - Multiple drive support
🛠️ Available Tools
Core Filesystem Operations
get_platform_info- Show current platform and allowed pathslist_directory- List directory contents with platform-aware hidden file filteringread_file/write_file- File content operationscreate_directory/delete_directory- Directory managementdelete_file- File removalmove_item/copy_item- File/directory manipulationget_file_info- Detailed file metadata (platform-specific)
Search & Navigation
search_files- Platform-aware file search (find/dir)get_current_directory- Current working directory infoexecute_command- Platform-aware shell command execution
🚀 Quick Setup
1. Install Dependencies
cd mcp-filesystem-cross-platform
npm install
2. Build (Optional)
npm run build
3. Run Development Mode
npm run dev
4. Install to a Runtime Directory (Optional)
./scripts/install-runtime.sh
By default the script installs the server into /opt/mcp-servers/mcp-filesystem-cross-platform. Use --prefix to change the parent directory or --name to customize the folder name.
📋 Platform-Specific Allowed Paths
The MCP automatically detects the platform and restricts access to safe directories:
Linux
/home/ # User directories
/tmp/ # Temporary files
/var/tmp/ # System temporary
/opt/ # Optional software
/usr/local/ # Local installations
/etc/ # Configuration files (read access)
macOS
/Users/ # User directories
/tmp/ # Temporary files
/var/tmp/ # System temporary
/opt/homebrew/ # Homebrew (Apple Silicon)
/usr/local/ # Homebrew (Intel) + local installations
Windows
C:\Users\ # User directories
C:\temp\ # Temporary files
C:\tmp\ # Alternative temp
D:\ # Additional drives
🔒 Security Features
- Path validation prevents directory traversal attacks
- Platform-aware restrictions to system-appropriate safe directories
- Sandboxed execution environment
- No access to system-critical directories outside allowed paths
⚙️ Claude Desktop Configuration
Linux/macOS
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["tsx", "/path/to/mcp-filesystem-cross-platform/src/index.ts"]
}
}
}
Windows
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["tsx", "C:\\path\\to\\mcp-filesystem-cross-platform\\src\\index.ts"]
}
}
}
🎯 Usage Examples
Once configured, you can ask Claude:
Platform Detection
- "What platform am I running on?"
- "Show me the allowed filesystem paths"
File Operations
- "List the contents of my home directory"
- "Create a new directory called 'projects'"
- "Read the contents of my .bashrc file" (Linux/macOS)
- "Search for all .js files in my projects folder"
Cross-Platform Commands
- "Run 'ls -la'" (Linux/macOS) or "Run 'dir'" (Windows)
- "Execute 'npm install' in my project directory"
🔄 Differences from macOS-Only Version
Improvements:
- ✅ Cross-platform compatibility (Linux, macOS, Windows)
- ✅ Platform-aware command execution (find vs dir)
- ✅ Intelligent path restrictions based on OS
- ✅ Better error handling for platform differences
- ✅ Platform detection and reporting
Key Changes:
- Uses
os.platform()for platform detection - Platform-specific allowed paths arrays
- Different search commands per platform (
findvsdir) - Platform-aware shell selection (
bashvscmd.exe) - Windows drive letter support
- Enhanced hidden file filtering (includes
$files on Windows)
🐧 Linux-Specific Notes
The filesystem MCP works excellently on Linux with these considerations:
- Package Management: Can access
/opt/and/usr/local/for installed software - Configuration: Read access to
/etc/for system configs - Permissions: Full Unix permissions and ownership support
- Shell: Uses
/bin/bashfor command execution - Temporary Files: Supports both
/tmp/and/var/tmp/
💻 Windows-Specific Notes
Full Windows support with these adaptations:
- Drive Letters: Supports multiple drives (C:, D:, etc.)
- Path Separators: Handles Windows backslashes correctly
- Commands: Uses
cmd.exeand Windows-native commands - Hidden Files: Filters both
.and$prefixed files - Permissions: Windows-style file attributes
🚀 Migration from macOS-Only Version
If you're currently using the macOS-only version, here's how to migrate:
1. Update your Claude Desktop config:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["tsx", "/path/to/mcp-filesystem-cross-platform/src/index.ts"]
}
}
}
2. Test platform detection:
Ask Claude: "What platform am I running on?" to verify it's working.
3. Benefits you'll gain:
- Future-proof for Linux servers/containers
- Better Windows compatibility if needed
- More robust error handling
- Platform-aware command suggestions
🐛 Troubleshooting
Common Issues:
-
Permission Denied
- Check that the path is within allowed directories
- Use "get platform info" to see allowed paths
-
Command Not Found
- Commands are platform-specific (use
lson Unix,diron Windows) - MCP will suggest appropriate commands for your platform
- Commands are platform-specific (use
-
Path Not Found
- Use forward slashes
/on all platforms (Node.js handles conversion) - Check path exists with "list directory" first
- Use forward slashes
This cross-platform version provides excellent Linux support with full compatibility for Linux-specific paths, permissions, and shell commands. The original macOS version would have failed on Linux due to hardcoded /Users/ paths and macOS-specific assumptions.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.