fs-mcp-rs
fs-mcp-rs
A fast, configurable filesystem server for the Model Context Protocol (MCP), written in Rust.
fs-mcp-rs gives an MCP client a small set of filesystem tools while keeping access inside directories selected by the operator. It has no implicit filesystem root, no built-in personal path, and no writable default. The server starts only when you provide a configuration file.
Why one crate?
The public distribution is one crate and one executable, both named fs-mcp-rs. The protocol, policy, filesystem, search, and settings components remain separate Rust modules inside that crate. This keeps installation simple:
cargo install fs-mcp-rsUsers do not need to install or understand a graph of internal crates. The benchmark runner remains a development-only workspace member and is not included in the crates.io package.
Related MCP server: ellmos-filecommander-mcp
Features
MCP over JSON-RPC HTTP POST and line-delimited STDIO (stdin/stdout).
Zero-install execution via
npx fs-mcp-rs.Explicit allow-list of one or more filesystem roots (via CLI positional arguments or TOML config).
Read-only mode for safe deployments.
Optional write, move, edit, directory creation, and removal operations.
Bounded reads, writes, search results, and concurrency.
Literal and regular-expression content search.
.gitignoresupport and configurable hidden-file handling.Symlink traversal disabled by default.
Atomic file replacement and BLAKE3 hashes.
Optional arbitrary terminal command execution with time and output limits.
Persistent terminal sessions with incremental output cursors, long polling, stdin, process-tree termination, retention, and bounded buffers.
Concise tool execution logging (
[OK]/[WARN]).No telemetry and no automatic network discovery.
Requirements
Node.js (v18+) for
npxexecution, or Rust 1.85+ when building from source.An MCP client that can connect via STDIO JSON-RPC or Streamable HTTP/JSON-RPC endpoint.
A configuration file or explicit root paths passed to the server.
Installation
Via npx (Zero Installation)
The easiest way to run fs-mcp-rs with any MCP client (such as Claude Desktop or Cursor) is using npx:
npx fs-mcp-rs /path/to/projectThe npm package automatically downloads the appropriate precompiled binary for your operating system and architecture (Windows x64, Linux x64, macOS x64/arm64).
From crates.io
cargo install fs-mcp-rs
fs-mcp-rs --versionFrom source
git clone https://github.com/nihmadev/fs-mcp-rs.git
cd fs-mcp-rs
cargo build --releaseThe executable will be at target/release/fs-mcp-rs on Unix-like systems or target\release\fs-mcp-rs.exe on Windows.
Create a configuration
Copy configs/example.toml somewhere appropriate and edit it. The server intentionally has no default config path:
cp configs/example.toml fs-mcp-rs.tomlWindows PowerShell:
Copy-Item configs\example.toml fs-mcp-rs.tomlMinimal read-only configuration:
[server]
host = "127.0.0.1"
port = 8000
max_concurrency = 32
max_io_concurrency = 16
[filesystem]
roots = ["/home/alice/projects"]
read_only = true
max_read_bytes = 8388608
max_write_bytes = 8388608
follow_links = false
[search]
max_results = 1000
max_concurrency = 4
worker_threads = 4
regex_cache_capacity = 64
include_hidden = false
respect_gitignore = true
# WARNING: enables arbitrary commands with the server process permissions.
[terminal]
enabled = true
max_concurrency = 2
default_timeout_ms = 30000
max_timeout_ms = 300000
max_output_bytes = 4194304Windows roots use escaped backslashes or forward slashes:
roots = ["C:\\Users\\Alice\\Projects", "D:/Shared/Documentation"]Relative roots are resolved relative to the directory containing the configuration file, not relative to an arbitrary process working directory.
Configuration reference
[server]
host: IP address to bind. Keep127.0.0.1unless remote clients genuinely need access.port: TCP port for/healthand/mcp.max_concurrency: maximum number of MCP requests processed at once.max_io_concurrency: maximum number of simultaneous non-search filesystem jobs.log_tools: whether concise tool execution logging ([OK]/[WARN]) is printed (default:true).
[filesystem]
roots: non-empty list of allowed directories. Every requested path must resolve inside one of them.read_only: whentrue, all mutating tools are rejected.max_write_bytes: largest permittedwrite_fileor resultingedit_textcontent.follow_links: whether paths containing symbolic links may be followed. Leave thisfalseunless you have reviewed the consequences.
[search]
max_results: maximum matches returned by one search.max_concurrency: maximum simultaneous search jobs.worker_threads: filesystem traversal threads used by each search.regex_cache_capacity: number of compiled search patterns cached in memory;0disables the cache.include_hidden: include hidden files and directories.respect_gitignore: apply Git ignore files while walking directories.
[terminal]
enabled: expose command execution. When disabled,run_commandreturns a tool error.max_concurrency: maximum terminal commands running simultaneously.default_timeout_ms: timeout used when a call does not provide one.max_timeout_ms: largest timeout a call may request.max_output_bytes: maximum combined stdout/stderr bytes retained per terminal session. Old output is evicted and reported as dropped/truncated.max_read_bytes: maximum output bytes returned by oneterminal_readcall.max_wait_ms: maximum long-poll duration for oneterminal_readcall.session_retention_ms: how long completed sessions and their output remain readable before automatic cleanup.
run_command executes arbitrary commands through cmd.exe on Windows and /bin/sh on GNU/Linux and macOS. It is advertised with destructive and open-world MCP annotations so compatible providers can show a warning. Enabling it gives commands all permissions of the operating-system account running the server; filesystem roots and read-only mode do not sandbox terminal commands.
Unknown fields and zero-valued safety limits are rejected. This catches misspelled settings instead of silently ignoring them.
Start the server
Positional root paths (Quickstart)
Start directly by specifying allowed filesystem directories on the command line:
fs-mcp-rs /home/alice/project1 /home/alice/project2If no configuration file or positional roots are passed, fs-mcp-rs uses default settings scoped to the current working directory.
With a configuration file
Pass the configuration explicitly:
fs-mcp-rs --config /absolute/path/to/fs-mcp-rs.tomlOr use the environment variable:
FS_MCP_CONFIG=/absolute/path/to/fs-mcp-rs.toml fs-mcp-rsPowerShell:
$env:FS_MCP_CONFIG = "C:\config\fs-mcp-rs.toml"
fs-mcp-rsTransport Modes (STDIO vs HTTP)
STDIO Mode: Activated automatically when stdout/stdin are non-interactive pipes (e.g. when spawned as an MCP subprocess) or when passing
--stdio. Structured logs are written tostderrto keepstdoutclean for line-delimited JSON-RPC messages.HTTP Mode: Activated by default during interactive execution. Listens on the configured host/port for
/healthand/mcpendpoints.
Check HTTP health:
curl http://127.0.0.1:8000/healthExpected response:
okThe MCP endpoint is:
http://127.0.0.1:8000/mcpExpose the server through a secure tunnel
For testing with a remote MCP client, keep fs-mcp-rs bound to loopback and expose it through a tunnel. Start the server first:
fs-mcp-rs --config ./fs-mcp-rs.tomlVerify the local endpoint before creating a tunnel:
curl http://127.0.0.1:8000/healthA public tunnel URL gives remote clients a path to the tools and filesystem roots allowed by your configuration. Start withread_only = true, grant only narrowly scoped roots, never expose secrets, and stop the tunnel when it is no longer needed. Quick tunnels are intended for development—not permanent production hosting.
Cloudflare Tunnel
Install cloudflared, then create a temporary Quick Tunnel:
cloudflared tunnel --url http://127.0.0.1:8000cloudflared prints a temporary URL similar to https://random-name.trycloudflare.com. Use the MCP endpoint with /mcp appended:
https://random-name.trycloudflare.com/mcpFor a stable hostname, create a named Cloudflare Tunnel, map a DNS hostname to it, and route that hostname to http://127.0.0.1:8000. Protect long-lived deployments with Cloudflare Access or another authentication layer.
ngrok
Install ngrok, authenticate its CLI if required by your account, and start an HTTP tunnel:
ngrok http 8000Use the HTTPS forwarding URL shown by ngrok and append /mcp:
https://example.ngrok-free.app/mcpThe local inspection UI is normally available at http://127.0.0.1:4040. It can expose request details, so keep it local and do not share it publicly.
Connect a remote MCP client
Use the public HTTPS URL as an HTTP/Streamable HTTP MCP server:
{
"mcpServers": {
"filesystem": {
"transport": "http",
"url": "https://your-public-host.example/mcp"
}
}
}Test both endpoints after the tunnel starts:
curl https://your-public-host.example/health
curl -i https://your-public-host.example/mcpA non-200 response from a plain GET /mcp can be expected because MCP communication uses protocol requests; the important checks are that /health is reachable and that the MCP client can initialize a session.
Production hosting
For a persistent deployment, prefer a private network/VPN or a named authenticated tunnel. Run fs-mcp-rs under a dedicated low-privilege account and a service manager, keep it bound to loopback, terminate TLS at the tunnel or reverse proxy, restrict client access, pin the configuration path, and monitor logs. Do not rely on an unprotected public URL as the only security boundary.
Configure an MCP client
fs-mcp-rs can be configured as a local STDIO subprocess or a remote/local HTTP service in MCP clients like Claude Desktop, Cursor, VS Code, or Windsurf.
Option A: STDIO Transport with npx (Recommended for Claude / Cursor)
No pre-installation required:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "fs-mcp-rs", "/path/to/allowed/directory"]
}
}
}Or using an installed binary with explicit --stdio:
{
"mcpServers": {
"filesystem": {
"command": "fs-mcp-rs",
"args": ["--stdio", "/path/to/allowed/directory"]
}
}
}Option B: HTTP Transport
Start fs-mcp-rs as a long-running service, then point your client to the /mcp HTTP endpoint:
{
"mcpServers": {
"filesystem": {
"transport": "http",
"url": "http://127.0.0.1:8000/mcp"
}
}
}Do not expose HTTP endpoints to untrusted networks without authentication or TLS.
Available tools
list_directory: list direct children of a directory.read_file: read a UTF-8 byte range with explicit offset and length.write_file: atomically create or replace a UTF-8 file. SetcreateParents: truefor a new nested path; the server safely creates missing parent directories after validating the allowed root. The default isfalse.search_files: find paths whose file name contains a string.search_content: case-insensitive literal or regex search in text files.get_capabilities: report sanitized effective limits, roots, protocol versions, and advertised tools.list_tree: return a bounded, deterministic, paginated flat directory tree.apply_patch: atomically apply a validated single-file unified text diff;dryRunnever mutates.file_info: return rich metadata and an optional bounded-streaming BLAKE3 digest.create_directory: create one directory; parents must already exist.remove: remove one file or an empty directory.hash_file: calculate a BLAKE3 file hash.move: move without overwriting an existing destination.edit_text: replace an exact expected number of text matches atomically.terminal_start: start a persistent command and immediately return a session ID.terminal_read: incrementally read stdout/stderr events using a byte cursor; optionally long-poll for new output.terminal_write: write UTF-8 data to a running session's stdin.terminal_close_stdin: send EOF to a running session.terminal_kill: terminate the session's complete process tree.terminal_close: explicitly remove a completed session and retained output.run_command: execute an arbitrary shell command with optional working directory and timeout, waiting for completion for backward compatibility.
Mutating tools remain visible in read-only mode but return a clear tool error. This lets one client configuration work with both read-only and writable deployments.
Security model
Every readable path is canonicalized and checked against the configured roots.
Every write destination is checked through its existing parent directory.
Symlink traversal is rejected by default.
Reads, writes, result counts, and worker concurrency are bounded.
Writes use a temporary file in the destination directory before persistence.
edit_textrequires an expected replacement count, preventing accidental broad edits.
Recommended production posture:
Start with
read_only = true.Grant the smallest possible roots; do not grant a whole home directory or drive without a specific reason.
Bind to loopback.
Run under a dedicated low-privilege operating-system account.
Keep hidden files excluded unless needed.
If remote access is required, put authentication and TLS in front of the server.
Back up writable roots and test restore procedures.
Filesystem checks can still be affected by operating-system races if another process can replace path components during an operation. Do not share writable roots with untrusted local users.
New tool examples
Discover effective constraints without probing paths:
{"name":"get_capabilities","arguments":{}}List a deterministic tree page and continue with the returned cursor:
{"name":"list_tree","arguments":{"path":".","depth":2,"include":["**/*.rs"],"exclude":["target/**"],"maxEntries":100,"cursor":null}}Validate a one-file patch without mutating the target:
{"name":"apply_patch","arguments":{"path":"README.md","patch":"--- a/README.md\n+++ b/README.md\n@@ -1 +1 @@\n-old\n+new\n","expectedBlake3":null,"dryRun":true}}Request rich metadata and a bounded streaming hash:
{"name":"file_info","arguments":{"path":"README.md","includeHash":true}}apply_patch rejects binary, multi-file, create/delete, and rename patches. All hunks apply atomically or none do. It preserves the target's existing LF or CRLF convention and final-newline state. dryRun performs complete validation but never writes, including in read-only mode.
Configuration reference for tree and patch limits
The following optional [filesystem] fields have validated defaults, so existing configuration files continue to load:
Field | Default | Constraint |
|
| Positive maximum recursive depth |
|
| Positive maximum entries returned per page |
|
| Positive maximum skipped-entry warnings |
|
| Positive maximum unified-diff input bytes |
|
| Positive and no greater than |
list_tree uses the search hidden-file and Git-ignore settings. Cursors are opaque and bound to the canonical root, depth, and filters. Every requested path still passes through Policy; these tools do not weaken root isolation, read-only enforcement, or symlink restrictions.
Migration from stat
file_info replaces the former public stat tool. stat is no longer advertised or dispatched. Clients should migrate to file_info; set includeHash only when a BLAKE3 digest is needed.
Logging
Structured tracing logs
All structured tracing logs are printed to stderr to ensure stdout remains clean for JSON-RPC 2.0 frames when running in STDIO mode. Set RUST_LOG to control verbosity:
RUST_LOG=info fs-mcp-rs --config ./fs-mcp-rs.tomlUse debug only while troubleshooting because paths may appear in diagnostic output.
Tool Call Execution Logging
When log_tools = true (the default), fs-mcp-rs logs a single line summarizing each tool invocation:
Success:
[OK] read_file src/main.rs (3 ms)Warning/Error:
[WARN] read_file outside/allowed/path - OUTSIDE_ALLOWED_ROOT: path outside allowed roots (0 ms)
Tool logging can be disabled in your TOML config under [server]: log_tools = false.
Development and release validation
Run the complete local gate before opening a release:
cargo fmt --all -- --check
cargo check --workspace --all-targets
cargo clippy --workspace --all-targets -- -D warnings
cargo test --workspace
cargo publish --dry-run -p fs-mcp-rsOn Windows, scripts\build.cmd runs the same checks. Continuous integration (.github/workflows/ci.yml) runs formatting, linting, and tests on Ubuntu, macOS, and Windows runners. GitHub Actions release workflow (.github/workflows/release.yml) builds precompiled binary archives for all major platforms and releases them alongside the npm package.
Benchmark methodology is documented in BENCHMARKS.md. Performance claims should be accompanied by raw results, machine details, configuration, and commit hashes.
License
Copyright (C) 2026 nihmadev (lolz@nihmadev.fun).
Licensed under GNU GPL version 3 or any later version (GPL-3.0-or-later). See LICENSE and the canonical license text at https://www.gnu.org/licenses/gpl-3.0.html.
This server cannot be installed
Maintenance
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nihmadev/fs-mcp-rs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server