MCP server for filesystem search and manipulation with granular search, content search and file edits
Project description
MCP Filesystem Server (Encoding Supported)
A Model Context Protocol (MCP) server for filesystem operations, optimized for intelligent interaction with large files and covering various text encodings (like UTF-8, EUC-KR).
Quick Setup with uvx
You can easily run this MCP server using uvx (the execution tool provided by uv). To configure this server in your MCP client (such as Claude Desktop or Antigravity), add the following to your configuration file:
MCP Client Configuration
Add the following JSON to your MCP settings file (For Claude Desktop):
- macOS/Linux:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-filesystem-encoding": {
"command": "uvx",
"args": [
"mcp-filesystem-encoding",
"C:\\Users\\username\\Desktop\\Test",
"C:\\Users\\username\\Documents\\Projects"
]
}
}
}
Note: The arguments provided after the package name act as your Allowed Root Directories.
- Multiple Paths Supported: You can specify as many root directories as you need by adding them as separate string arguments in the
argsarray (e.g.,"C:\\dir1","C:\\dir2", etc.).- Security Boundary: The MCP server will strictly restrict its file operations (read, write, search) to only these listed directories and their subdirectories.
Important Variables & Usage Guidelines
1. Using the path Variable (Config & Tools)
- At Server Setup: Provide the allowed root paths in your
argslist (as shown above). - During Tool Execution: When the MCP client (AI) uses tools like
read_fileorsearch_files, it must specify the fully qualified absolutepath(e.g.,C:\Users\username\Desktop\Test\file.txt). If the AI requests a path outside of the configured root directories, the server will deny access.
2. The encoding Option
This extended MCP server natively supports reading, writing, and searching files across different encodings, preventing character corruption in non-UTF-8 local environments (such as Korean euc-kr / cp949, or Japanese shift-jis).
The encoding parameter is optional (defaults to "utf-8") and is readily available across the following tool operations:
- Examine Content:
read_file,read_multiple_files,head_file,tail_file - Modify Content:
write_file,edit_file - Discover Content:
search_files(for precise text matching),grep_files(advanced Regex searches requiring decoding of target files)
Usage Example in MCP Call:
// Example: Reading a legacy Korean document
{
"path": "C:\\Users\\Username\\Documents\\legacy_document.txt",
"encoding": "euc-kr"
}
Available Tools Summary
- Basic IO:
read_file,write_file,edit_file - Search:
search_files,grep_files - File System:
list_directory,create_directory,directory_tree - Analytics:
compare_files,find_duplicate_files
(All internal tools strictly enforce the path policy boundaries and seamlessly support the encoding option to empower your environment without breaking localized text!)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_filesystem_encoding-0.2.2.tar.gz.
File metadata
- Download URL: mcp_filesystem_encoding-0.2.2.tar.gz
- Upload date:
- Size: 94.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4059f506ae4aba44f765df14f802d5e3ef6df0316815a2147c4cbcf2583147c8
|
|
| MD5 |
0adaa5bc3b3817d3d7ac51137c8a347f
|
|
| BLAKE2b-256 |
de41475cabf67504a6d6375c75dba45b7f8150719700d99494379044ce8d8f5a
|
File details
Details for the file mcp_filesystem_encoding-0.2.2-py3-none-any.whl.
File metadata
- Download URL: mcp_filesystem_encoding-0.2.2-py3-none-any.whl
- Upload date:
- Size: 33.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88d76205ece5ae52b4b227397f4cc8dbb4af805f251211a3467731f655525e57
|
|
| MD5 |
731eb6415d961b7a4911247d85cc9de0
|
|
| BLAKE2b-256 |
b889424aa58f0f19bcc70b64fe825736c8beeb54dd218b4ec1120274c820076d
|