MCP-FileSystem
A Model Context Protocol server that gives AI assistants secure, sandboxed filesystem access with tools for reading, writing, searching, and managing files and directories.
README
Python MCP Filesystem Server
A comprehensive Model Context Protocol (MCP) server that provides AI assistants with secure, controlled filesystem access. Built with Python for easy customization and learning.
Overview
This MCP server enables AI assistants like Claude to interact with your filesystem through a secure, sandboxed interface. It provides 14 powerful tools for file operations, from basic read/write to advanced features like content search and directory tree visualization.
Features
📁 File Operations
- read_file - Read file contents
- write_file - Create or overwrite files
- append_file - Append to existing files
- delete_file - Delete files
📂 Directory Operations
- list_files - List directory contents
- list_directory_tree - Visualize directory structure
- create_directory - Create new directories
- delete_directory - Delete directories recursively
🔍 Search & Discovery
- search_files - Find files by name pattern (wildcards)
- search_content - Search text within files
- file_exists - Check file/directory existence
- get_file_info - Get metadata (size, dates, type)
🔧 File Management
- rename_file - Rename files/directories
- move_file - Move files/directories
🔒 Security Features
- Path validation - Prevents directory traversal attacks
- Workspace sandboxing - All operations restricted to designated directory
- Error handling - Comprehensive error messages for all operations
Quick Start
Prerequisites
- Python 3.10 or higher
- pip package manager
Installation
-
Clone the repository
git clone https://github.com/YOUR-USERNAME/mcp-filesystem-server-python.git cd mcp-filesystem-server-python -
Create virtual environment
python -m venv venv # Windows venv\Scripts\activate # macOS/Linux source venv/bin/activate -
Install dependencies
pip install -r requirements.txt -
Test the server (optional)
python examples/demo.py
Configuration
Claude Desktop Setup
Add this configuration to Claude Desktop:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"filesystem": {
"command": "python",
"args": ["C:\\path\\to\\mcp-filesystem-server-python\\src\\server.py"],
"env": {
"WORKSPACE_DIR": "C:\\path\\to\\your\\workspace"
}
}
}
}
Important:
- Use absolute paths
- On Windows, use double backslashes (
\\) or forward slashes (/) - Set
WORKSPACE_DIRto the directory you want Claude to access
Windows Store Claude Desktop
If using Windows Store version, use this location instead:
%LOCALAPPDATA%\Packages\Claude_pzs8sxrjxfjjc\LocalCache\Roaming\Claude\claude_desktop_config.json
Usage Examples
Basic File Operations
Ask Claude:
"List files in my workspace"
Claude will use: list_files tool
Ask Claude:
"Read the file report.txt"
Claude will use: read_file tool with path: "report.txt"
Ask Claude:
"Create a file called notes.txt with a bullet list of my tasks"
Claude will use: write_file tool
Advanced Operations
Search for files:
"Find all Python files in my workspace"
Uses: search_files with pattern "*.py"
Search content:
"Which files contain the word 'TODO'?"
Uses: search_content with text "TODO"
Directory tree:
"Show me the structure of my workspace"
Uses: list_directory_tree
File metadata:
"Get information about config.json"
Uses: get_file_info with path "config.json"
Project Structure
mcp-filesystem-server-python/
├── src/
│ └── server.py # Main MCP server implementation
├── examples/
│ └── demo.py # Standalone demo (test without Claude)
├── requirements.txt # Python dependencies
├── README.md # This file
├── LICENSE # MIT License
└── .gitignore # Git exclusions
Development
Running Standalone
Test the server without Claude Desktop:
python examples/demo.py
This simulates how Claude would interact with your server.
Manual Testing
Start the server manually to see debug output:
# Windows
set WORKSPACE_DIR=C:\path\to\workspace
python src\server.py
# macOS/Linux
WORKSPACE_DIR=/path/to/workspace python src/server.py
The server communicates via stdio and expects MCP protocol messages.
Adding New Tools
- Add tool definition in
handle_list_tools()function - Implement handler in
handle_call_tool()function - Follow existing patterns for error handling
- Test with
examples/demo.py
How MCP Works
Architecture
┌─────────────────┐ ┌──────────────────┐
│ Claude Desktop │ ◄──────► │ MCP Server │
│ (Client) │ stdio │ (src/server.py) │
└─────────────────┘ └──────────────────┘
│
▼
┌─────────────────┐
│ Your Workspace │
│ (Files) │
└─────────────────┘
Communication Flow
- Claude starts your server → Python process launches
- Claude asks: "What tools do you have?" →
handle_list_tools() - Your server responds → List of 14 tools
- User requests action → "List my files"
- Claude calls tool →
handle_call_tool(name="list_files", ...) - Your server executes → Reads directory, returns results
- Claude shows results → User sees file list
Key Concepts
- stdio transport - Communication via standard input/output
- Tools - Functions Claude can call with JSON parameters
- Handlers - Your Python functions that implement tools
- Types - MCP protocol message types (
Tool,CallToolResult, etc.)
Troubleshooting
Claude doesn't see the tools
- Check config file path is correct
- Verify Python path in config is absolute
- Restart Claude Desktop completely
- Check Claude Desktop version supports MCP (requires Pro)
"Access denied" errors
- Ensure
WORKSPACE_DIRis set correctly - Check file/directory permissions
- Verify paths are within workspace (security feature)
Server not starting
- Test Python path: Run the command from config manually
- Check dependencies:
pip install -r requirements.txt - Verify Python version:
python --version(need 3.10+)
Finding logs
Windows Store version logs may be in:
%LOCALAPPDATA%\Packages\Claude_pzs8sxrjxfjjc\LocalCache\Roaming\Claude\
Contributing
Contributions welcome! This is a learning-friendly project.
Ideas for improvements:
- Add file copy tool
- Add archive/zip tools
- Add file watching/monitoring
- Add binary file support
- Add permission management
- More sophisticated search (regex)
License
MIT License - see LICENSE file for details.
Resources
Acknowledgments
Built as a learning project to understand the Model Context Protocol. Perfect for:
- Learning MCP server development
- Understanding AI-filesystem interaction
- Building custom AI tools
- Educational purposes
Questions or issues? Open an issue on GitHub! }
**macOS/Linux:** `~/Library/Application Support/Claude/claude_desktop_config.json`
```json
{
"mcpServers": {
"filesystem": {
"command": "/path/to/venv/bin/python",
"args": ["/path/to/file-system-server-python/src/server.py"],
"env": {
"WORKSPACE_DIR": "/path/to/test-workspace"
}
}
}
}
Then restart Claude Desktop and ask it to:
- "List the files in my workspace"
- "Read sample.txt"
- "Create a new file called notes.txt with some content"
Option 2: Debug in VS Code
- Open this project in VS Code
- Install the Python extension
- Press F5 or go to Run > Start Debugging
- The server starts in debug mode - you can set breakpoints in src/server.py
Project Structure
file-system-server-python/
├── src/
│ └── server.py # Main server implementation (READ THIS!)
├── requirements.txt # Python dependencies
├── .vscode/
│ ├── launch.json # VS Code debug configuration
│ └── mcp.json # VS Code MCP debug config
└── README.md # This file
Understanding the Code
Open src/server.py and you'll see:
1. Server Creation (line ~27)
server = Server("simple-filesystem-server")
2. Input Validation with Pydantic (lines ~30-40)
class ReadFileInput(BaseModel):
path: str = Field(description="Relative path to file")
Pydantic validates inputs automatically, similar to Zod in TypeScript.
3. Tool Registration with Decorators (lines ~43-73)
@server.call_tool()
async def read_file(arguments: dict[str, Any]) -> list[TextContent]:
"""Read the contents of a file"""
# Implementation...
Python uses decorators (@server.call_tool()) instead of explicit registration.
4. Path Security (lines ~19-25)
def validate_path(file_path: str) -> Path:
"""Prevent path traversal attacks"""
full_path = (WORKSPACE_DIR / file_path).resolve()
if not str(full_path).startswith(str(WORKSPACE_DIR.resolve())):
raise ValueError("Access denied")
return full_path
5. Server Startup (lines ~132-146)
async with stdio_server() as (read_stream, write_stream):
await server.run(read_stream, write_stream, ...)
Uses Python's async context manager for clean resource handling.
What You're Learning
This project teaches you:
- ✅ MCP Server basics - Creating servers in Python
- ✅ Tool decorators - Using
@server.call_tool() - ✅ Async/await - Python async programming
- ✅ Input validation - Using Pydantic models
- ✅ Error handling - Try/except patterns
- ✅ Path operations - Using pathlib
- ✅ Security - Path validation and sandboxing
Development Tips
Virtual Environment
Always activate your virtual environment before working:
# Windows
venv\Scripts\activate
# macOS/Linux
source venv/bin/activate
Adding New Tools
Add a new tool by defining an input model and a decorated function:
class DeleteFileInput(BaseModel):
path: str = Field(description="File to delete")
@server.call_tool()
async def delete_file(arguments: dict[str, Any]) -> list[TextContent]:
"""Delete a file from the workspace"""
try:
input_data = DeleteFileInput(**arguments)
full_path = validate_path(input_data.path)
full_path.unlink()
return [TextContent(type="text", text=f"Deleted {input_data.path}")]
except Exception as e:
return [TextContent(type="text", text=f"Error: {str(e)}")]
Logging
Use print(..., file=sys.stderr) for logging:
print("Debug info", file=sys.stderr) # Good
print("Debug info") # Bad - interferes with stdio
Exercises to Try
-
Add a
file_infotool- Return file size, modification time, and type
- Hint: Use
full_path.stat()
-
Add a
search_filestool- Search for text within files
- Return matching files and line numbers
-
Improve error handling
- Return specific error messages for different error types
- FileNotFoundError, PermissionError, etc.
Python vs TypeScript Version
If you're comparing this to the TypeScript version:
| Feature | Python | TypeScript |
|---|---|---|
| Input validation | Pydantic | Zod |
| Tool registration | Decorators (@server.call_tool()) |
Method calls (server.registerTool()) |
| Async | async/await |
async/await |
| Path handling | pathlib.Path |
path module |
| Type hints | Native Python | TypeScript types |
Both versions do the same thing - choose the language you're more comfortable with!
Common Python-Specific Issues
-
Wrong Python version
# Check version python --version # Should be 3.10+ -
Virtual environment not activated
# You should see (venv) in your prompt # If not, activate it venv\Scripts\activate # Windows -
Module not found
# Make sure you installed dependencies pip install -r requirements.txt -
Path separators on Windows
# Use pathlib - it handles Windows/Unix automatically Path("folder") / "file.txt" # Works everywhere
Next Steps
After mastering this project:
- Add more tools (delete, rename, search)
- Add resources (learn resource templates in Python)
- Move to Project #2 (Note-Taking Server with persistence)
- Try the TypeScript version to compare languages
Resources
Troubleshooting
ImportError? Make sure virtual environment is activated and dependencies are installed
Server not responding? Check that you're using stdio transport correctly
Path errors? Remember all paths are relative to WORKSPACE_DIR
Need help? Check the MCP Discord or GitHub Issues
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。