MCP Local Filesystem Server
An MCP server that provides secure access to local file system operations.
README
MCP Local Filesystem Server
An MCP (Model Context Protocol) server that provides secure access to local file system operations.
Features
- Read Files: Read file contents with configurable encoding
- Write Files: Create or overwrite files
- List Directories: Browse directory contents
- Create Directories: Create new directories (with recursive option)
- Delete Files/Directories: Remove files or directories (with recursive option)
- Move/Rename: Move or rename files and directories
- File Stats: Get detailed file/directory metadata
- Search Files: Search for files matching patterns
Security
The server implements directory-level access control. Only directories specified at startup are accessible, preventing unauthorized access to the rest of the filesystem.
Installation
npm install
npm run build
Usage
Start the server with one or more allowed directories:
node build/index.js /path/to/allowed/dir1 /path/to/allowed/dir2
Or using the binary:
mcp-local-filesystem /path/to/allowed/dir1 /path/to/allowed/dir2
Configuration for Cursor
Add to your MCP settings configuration:
{
"mcpServers": {
"local-filesystem": {
"command": "node",
"args": [
"d:\\FILE_SYSTEM_MCP\\build\\index.js",
"C:\\Users\\YourUsername\\Documents",
"D:\\Projects"
]
}
}
}
Available Tools
read_file
Reads a file from the filesystem.
Parameters:
path(string, required): Path to the fileencoding(string, optional): Encoding to use (utf-8, ascii, base64)
write_file
Writes content to a file (creates or overwrites).
Parameters:
path(string, required): Path to the filecontent(string, required): Content to writeencoding(string, optional): Encoding to use
list_directory
Lists all files and directories in a directory.
Parameters:
path(string, required): Path to the directory
create_directory
Creates a new directory.
Parameters:
path(string, required): Path for the new directoryrecursive(boolean, optional): Create parent directories if needed
delete_path
Deletes a file or directory.
Parameters:
path(string, required): Path to deleterecursive(boolean, optional): Required for non-empty directories
move_path
Moves or renames a file or directory.
Parameters:
source(string, required): Source pathdestination(string, required): Destination path
get_file_stats
Gets detailed information about a file or directory.
Parameters:
path(string, required): Path to the file or directory
search_files
Searches for files matching a pattern.
Parameters:
directory(string, required): Directory to search inpattern(string, required): Filename pattern (supports * and ?)maxResults(number, optional): Maximum results (default: 100)
Resources
The server exposes each allowed directory as a resource with a file:// URI scheme. You can use the ReadResource MCP operation to browse directories and read files.
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode for development
npm run watch
License
MIT
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.