{
"mcpServers": {
"local-file-operation-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 178 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Local File Operation MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that enables Claude Desktop to safely interact with your local file system. Built with C# .NET 8.0, this server provides secure file operations within your home directory, allowing Claude to read, write, list, and manage files directly on your computer.
This MCP server bridges the gap between Claude Desktop (Anthropic's desktop application) and your local file system. Once configured, you can ask Claude to:
The server uses the Model Context Protocol, a standardized way for AI assistants to securely access external resources. It communicates with Claude Desktop through JSON-RPC 2.0 over stdin/stdout, providing a secure sandbox that restricts all operations to your home directory.
Clone the repository:
git clone https://github.com/your-username/local-files-mcp-server.git
cd local-files-mcp-server
Run the setup script:
.\setup.ps1
This will:
Restart Claude Desktop and look for "✅ local-files: connected"
💡 Tip: You can verify the MCP server connection status in Claude Desktop by going to Settings → Developer where you'll see all configured MCP servers and their connection status.
Clone and build:
git clone https://github.com/your-username/local-files-mcp-server.git
cd local-files-mcp-server
dotnet build
For Claude Desktop integration:
dotnet publish -c Release -o publish --self-contained true -r win-x64 /p:PublishSingleFile=trueclaude_desktop_config.json to %APPDATA%\Claude\claude_desktop_config.jsonPATH_TO_REPO with your actual repository pathFor direct usage:
dotnet run --project LocalFilesMcpServer
The server communicates via stdin/stdout using JSON-RPC 2.0 protocol.
See the MCP server in action with Claude Desktop:
These screenshots demonstrate the complete file management workflow available through Claude Desktop integration.
list_files - Browse Directory ContentsLists files and directories with metadata
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_files",
"arguments": {
"path": "Documents"
}
}
}
read_file - R