MCP File Operations Server
Enables secure file management operations within a documents folder, including reading, writing, listing, deleting files and creating directories. Supports all file types with path validation to prevent access outside the designated documents directory.
README
MCP File Operations Server
A Python MCP (Model Context Protocol) server that provides read and write access to files in the documents subfolder for use with Claude Desktop.
Features
- Read files: Read the contents of any file in the documents folder
- Write files: Create or overwrite files in the documents folder
- List files: Browse files and directories in the documents folder with search capabilities
- Delete files/directories: Remove files or directories from the documents folder
- Create directories: Create new directories within the documents folder
- Security: Path validation to prevent access outside the documents folder
- All file types: Supports all file types without restrictions
- Search functionality: Find files using patterns and recursive search
Installation
Using Poetry (Recommended)
-
Install Poetry if you haven't already:
curl -sSL https://install.python-poetry.org | python3 - -
Install dependencies:
poetry install -
Activate the virtual environment:
poetry shell
Using pip
-
Install the required dependencies:
pip install -r requirements.txt -
Ensure the
documentsfolder exists in your project directory.
Usage with Claude Desktop
1. Add the server to Claude Desktop
- Open Claude Desktop
- Go to Settings → MCP Servers
- Click "Add Server"
- Configure the server:
- Name: File Operations
- Command:
poetry(if using Poetry) orpython - Arguments:
run run_server.py(if using Poetry) orrun_server.py(if using pip) - Working Directory: Path to your project folder
2. Available Tools
Once connected, Claude will have access to these tools:
read_file
Read the contents of a file from the documents folder.
Parameters:
file_path(required): Path to the file relative to the documents folder
Example:
Read the file "notes.txt" from the documents folder
write_file
Write content to a file in the documents folder.
Parameters:
file_path(required): Path to the file relative to the documents foldercontent(required): Content to write to the filemode(optional): Write mode - "w" for overwrite (default), "a" for append
Example:
Write "Hello World" to a file called "greeting.txt"
list_files
List all files and directories in the documents folder with search capabilities.
Parameters:
subdirectory(optional): Specific subdirectory to list files fromsearch_pattern(optional): Search pattern to filter files (supports wildcards like *.txt, *.py, etc.)recursive(optional): Whether to search recursively in subdirectories (default: false)
Examples:
List all files in the documents folder
List all Python files recursively
List all files in the "projects" subdirectory
Search for files matching "*.md" pattern
delete_file
Delete a file or directory from the documents folder.
Parameters:
file_path(required): Path to the file or directory relative to the documents folderrecursive(optional): Whether to delete directories recursively (default: false)
Examples:
Delete the file "old_notes.txt"
Delete the directory "temp_folder" recursively
create_directory
Create a new directory in the documents folder.
Parameters:
dir_path(required): Path to the directory relative to the documents folder
Example:
Create a directory called "projects"
Security Features
- Path validation: All file operations are restricted to the
documentsfolder - Directory traversal protection: Prevents access to parent directories
- All file types supported: No restrictions on file extensions
- Error handling: Comprehensive error messages for debugging
Supported File Types
The server supports all file types without any restrictions. You can read, write, and manage any file format including:
- Text files (.txt, .md, .py, .js, .html, .css, etc.)
- Data files (.json, .csv, .xml, .yaml, etc.)
- Binary files (.pdf, .doc, .xls, .zip, etc.)
- Images (.jpg, .png, .gif, etc.)
- And any other file type
Testing the Server
Using Poetry
You can test the server using Poetry:
# Run the server directly
poetry run python run_server.py
# Run tests
poetry run pytest
# Run tests with coverage
poetry run pytest --cov=mcp_file_server
Using pip
You can test the server manually by running:
python run_server.py
The server will start and wait for MCP protocol messages on stdin/stdout.
Troubleshooting
Common Issues
-
Import errors: Make sure you've installed the requirements:
# Using Poetry poetry install # Using pip pip install -r requirements.txt -
Permission errors: Ensure the
documentsfolder has write permissions -
Path issues: The server automatically creates the
documentsfolder if it doesn't exist -
Claude Desktop connection: Make sure the working directory in Claude Desktop settings points to your project folder
-
Poetry not found: Install Poetry using the official installer:
curl -sSL https://install.python-poetry.org | python3 -
Logging
The server includes logging to help debug issues. Check the console output for error messages.
Development
Using Poetry
To modify the server:
- Edit
mcp_file_server/server.pyto add new tools or modify existing ones - Modify the
DOCUMENTS_DIRconstant to change the base directory - All file types are supported by default - no need to modify file type restrictions
- Run tests:
poetry run pytest - Format code:
poetry run black . - Sort imports:
poetry run isort .
Using pip
To modify the server:
- Edit
mcp_file_server/server.pyto add new tools or modify existing ones - Modify the
DOCUMENTS_DIRconstant to change the base directory - All file types are supported by default - no need to modify file type restrictions
License
This project is open source and available under the MIT License.
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.