File System MCP Server
Click on "Install 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., "@File System MCP Serverlist all files in the sandbox directory"
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.
File System MCP Server
An MCP (Model Context Protocol) server that exposes filesystem operations —
listing directories, reading, writing, and searching files — as tools an
LLM can discover and invoke at runtime. Built as a learning project to
understand MCP's architecture from the ground up, using the low-level
Server API (raw JSON Schemas, not the decorator-based FastMCP shortcut).
What this project demonstrates
How an MCP server advertises capabilities to a host via
tools/list, and how the host routes an LLM's tool-call decision back viatools/callWhy tool descriptions are prompt engineering, not documentation — the LLM only ever sees the JSON Schema, never your source code
Defensive server design: path sandboxing, input validation, structured error responses instead of crashes, and result truncation for large outputs
The read-only vs. destructive vs. idempotent distinction MCP tool annotations are meant to capture
Related MCP server: MCP Server
Architecture
Host (Claude Desktop / MCP Inspector / any MCP client)
│
│ tools/list → server responds with schemas for all 4 tools
│ tools/call → host sends {name, arguments}, server executes and
│ returns a result
▼
This server (stdio transport)
│
▼
sandbox/ (all file operations are confined to this directory)The server never calls the LLM and the LLM never calls the server directly — the host sits in between, using the schemas below to decide when and how to invoke each tool.
Tools
Tool | Type | Description |
| read-only | Reads and returns the full text content of a file |
| read-only | Lists files and folders in a directory (folders suffixed with |
| destructive | Writes text to a file; refuses to overwrite existing files unless |
| read-only | Recursively searches by filename glob pattern and/or file content, capped at 100 results |
All tools operate relative to a sandboxed root directory (./sandbox) —
paths are resolved and verified to stay inside that boundary before any
filesystem access happens, blocking path-traversal attempts like
../../etc/passwd.
Setup
uv syncRunning
With the MCP Inspector (recommended for development — shows raw protocol traffic and lets you call tools manually):
npx @modelcontextprotocol/inspector uv run main.pyOpen the URL it prints, click Connect, then Tools → List Tools to see all four schemas, and run any tool directly from the form UI.
As a server for an MCP host (e.g. Claude Desktop), add to your host's MCP config:
{
"mcpServers": {
"fs-mcp-server": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/fs-mcp-server", "main.py"]
}
}
}Security design
Sandboxing (
resolve_safe_path): every incoming path is joined onto the sandbox root, resolved to an absolute path, and checked withPath.is_relative_to()to confirm it didn't escape via..segments. Rejected paths raise a caughtValueError, never crash the server.Overwrite protection:
write_filewill not silently clobber an existing file — it requires an explicitoverwrite: trueargument.Result truncation:
search_filescaps output at 100 matches and notes when results were truncated, rather than risking an enormous response.Graceful failure everywhere: missing arguments, non-existent paths, wrong path types (file vs. directory), and unreadable/binary files all return a structured error message to the caller instead of raising an uncaught exception.
Known limitations / next steps
Tool annotations (
readOnlyHint,destructiveHint,idempotentHint) are not yet set explicitly — without them, hosts may apply incorrect defaults (e.g. flagging a read-only tool as destructive).Currently stdio transport only; could be extended to streamable HTTP for remote deployment.
search_filescontent search reads full file contents into memory per candidate file — fine for a learning project, would need streaming for very large files in production.
Stack
Python, mcp (official Anthropic SDK),
uv for dependency management.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
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/Saikiran2412/file_system_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server