mcp-filesystem-extended
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-filesystem-extendedsearch for 'TODO' in all .ts files"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Filesystem MCP Server
TypeScript implementation of a local filesystem MCP server with bounded inspection, comparison, and mutation surfaces.
This root README is the DX-first entrypoint. It keeps only shared orientation and routes detailed tool guidance to endpoint-local README.md files.
Read this next
Need | Start here |
Shared conventions and cross-endpoint rules | |
Shared architecture and ownership boundaries | |
Tool-specific quick guidance | Endpoint-local |
Related MCP server: LocalFS MCP Server
Architecture at a glance
Layer | Responsibility |
| MCP bootstrap, tool-catalog composition, stable server framing, and server-scope exposure |
| Tool-specific handlers, schemas, results, and runtime semantics |
| Path guarding, logging, persistence, and shared technical helpers |
Shared developer rules
All path-based operations stay inside configured allowed directories.
Broad-root discovery and recursive inspection default-exclude vendor, cache, and generated trees unless callers explicitly target them or reopen named descendants.
Resume-capable inspection families stay same-endpoint and continue through
resumeTokenplus the appropriateresumeMode.Primary result data stays complete in
content.text;structuredContentadds machine-readable envelope metadata and mirrored structured payloads.Public read surfaces remain intentionally split:
read_files_with_line_numbersfor bounded inline batch reads,read_file_contentfor advanced single-file modes.
External dependency for content search
The regex, fixed-string, and native pattern-aware count lanes depend on the native ugrep executable.
This dependency is now resolved during MCP server startup preflight, not lazily during request execution. The server expects one of these runtime conditions:
UGREP_EXECUTABLE_PATHpoints to the native shell-freeugrepbinary, orthe MCP server process
PATHalready contains the directory that holds the nativeugrepexecutable.
A successful ugrep --version check in an interactive shell is helpful, but it is not sufficient by itself. The decisive environment is the Node.js process that runs the MCP server.
Common installation examples:
Debian/Ubuntu:
apt-get install ugrepFedora/RHEL/CentOS:
dnf install ugrepArch:
pacman -S ugrepmacOS:
brew install ugrepWindows:
winget install Genivia.ugreporchoco install ugrep
After installation, verify with ugrep --version and then restart the MCP client or IDE process that launches the server so the server runtime can inherit the updated environment.
Windows permanent fix when ugrep --version is not available
If ugrep is installed on Windows but ugrep --version still cannot be executed, you MUST apply the permanent Chocolatey fix below.
This usually means ChocolateyInstall is set incorrectly and Chocolatey created the package under the wrong root.
Run:
[Environment]::SetEnvironmentVariable('ChocolateyInstall','C:\ProgramData\chocolatey','Machine')
$env:ChocolateyInstall = 'C:\ProgramData\chocolatey'
$env:Path = "C:\ProgramData\chocolatey\bin;$env:Path"
choco install ugrep --force -yThen open a new PowerShell window and verify again:
ugrep --versionIf the MCP server still cannot start native search afterward, configure UGREP_EXECUTABLE_PATH with the absolute path to ugrep.exe for the process that launches the MCP server.
Endpoint README TOC
Application/server scope
Inspection — discovery
Inspection — metadata and integrity
Inspection — search family and count
Inspection — read
Comparison
Mutation — content
Mutation — path
Documentation boundary
Root documentation stays shared and non-redundant:
README.md= DX-first entrypointDESCRIPTION.md= architecture indexCONVENTIONS.md= shared conventions and leaf-slice routingendpoint-local
README.mdfiles = detailed developer-facing guidance per public endpoint
This root file is intentionally a navigation surface, not a second endpoint-by-endpoint manual.
This server cannot be deployed
Maintenance
Related MCP Connectors
Securely search and manage workspace context files for AI agents and teams.
Verify structured artifacts, discover local tools and hand off immutable public state.
Generate SBOMs, scan vulnerabilities, and analyze dependencies from local projects or Git repos.
Artifact store for AI agents — read, write, and search files by path; share by rendered URL.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables exploration and search of local filesystems using glob pattern matching to find files and grep to search for text patterns within files.-
- FlicenseNot gradedqualityDmaintenanceProvides sandboxed access to local filesystem operations including directory and file management, content search with glob and regex patterns, and binary file support with configurable safety limits.-
- FlicenseNot gradedqualityBmaintenanceProvides sandboxed file system tools (read, write, search, list, watch) over the Model Context Protocol, enabling resume matching and analysis workflows via an agent.-
- FlicenseNot gradedqualityCmaintenanceProvides file system tools for resume matching agents, enabling reading, writing, searching, listing, watching, and batch processing of files via the Model Context Protocol.-