File Server MCP
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., "@File Server MCPlist all files in the documents folder"
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 Server MCP
A Model Context Protocol (MCP) server that exposes documents from specific folders through configurable access.
Features
Configurable Folders: Expose specific folders like Documents, Reports, Desktop, etc.
File Type Filtering: Only allow specific file extensions for security
Size Limits: Configurable maximum file size limits
Tools Available:
list_files: List files in a configured folder with optional pattern matchingread_file: Read the content of a specific filesearch_files: Search for files containing specific text
Resources: Access files through MCP resource URIs like
file://documents/filename.txt
Related MCP server: LocalFiles MCP Server
Configuration
The server can be configured through environment variables or the config.json file:
Default Folders
documents: C:\Users\bill\Documentsreports: C:\Supportdesktop: C:\Users\bill\Desktopbackup_scripts: C:\support
Environment Variables
FILE_SERVER_CONFIG: JSON string with custom configurationDOCUMENTS_FOLDER: Override documents folder pathREPORTS_FOLDER: Override reports folder pathDESKTOP_FOLDER: Override desktop folder path
Configuration File
Edit config.json to customize:
{
"folders": {
"documents": "C:\\Users\\bill\\Documents",
"reports": "C:\\Support",
"desktop": "C:\\Users\\bill\\Desktop",
"backup_scripts": "C:\\support"
},
"allowedExtensions": [".txt", ".md", ".pdf", ".docx", ".xlsx", ".csv", ".json", ".xml", ".log", ".ps1"],
"maxFileSize": 10485760
}Installation
Prerequisites
Install Node.js (https://nodejs.org/)
Install npm dependencies:
npm install
Build
npm run buildMCP Configuration
Add to your MCP settings file (C:\Users\bill\AppData\Roaming\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json):
{
"mcpServers": {
"file-server": {
"command": "node",
"args": ["C:/Users/bill/Desktop/file-server/build/index.js"],
"env": {
"FILE_SERVER_CONFIG": "{\"folders\":{\"documents\":\"C:\\\\Users\\\\bill\\\\Documents\",\"reports\":\"C:\\\\Support\",\"desktop\":\"C:\\\\Users\\\\bill\\\\Desktop\",\"backup_scripts\":\"C:\\\\support\"}}"
}
}
}
}Usage Examples
Once installed, you can use the file server through MCP tools:
List Files
Use the list_files tool with folder="documents" to see all files in the Documents folderRead a File
Use the read_file tool with folder="reports" and filename="backup-report.csv" to read a specific fileSearch Files
Use the search_files tool with folder="backup_scripts" and searchText="SQLite" to find scripts containing "SQLite"Access Resources
Access file://documents/ to get a list of files in Documents
Access file://reports/backup-report.csv to read a specific fileSecurity Features
Only configured folders are accessible
File type restrictions through allowedExtensions
File size limits to prevent large file access
Path traversal protection
Read-only access (no file modification)
Folder Structure
file-server/
├── package.json # Node.js package configuration
├── tsconfig.json # TypeScript configuration
├── config.json # Server configuration
├── README.md # This file
├── src/
│ └── index.ts # Main server implementation
└── build/ # Compiled JavaScript (after npm run build)
└── index.js # Executable MCP serverDevelopment
# Watch mode for development
npm run dev
# Build for production
npm run build
# Test the server
npm startAvailable Tools
3 toolslist_filesB
List files in a configured folder
| Name | Required | Description | Default |
|---|---|---|---|
| folder | Yes | Folder name to list files from. Available: documents, reports, desktop | |
| pattern | No | Optional file pattern to match (e.g., "*.txt") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. 'List files' clearly implies a non-destructive enumeration, which is useful. However, it does not mention return format, recursion, hidden files, sorting, or how the pattern parameter affects results.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short sentence with no filler or redundant information. It is concise, front-loaded, and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple listing tool, and the schema covers parameters. But it lacks usage differentiation from sibling tools and does not describe the output or behavior with the optional pattern. No output schema exists, so a bit more return-value context would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description itself adds no parameter-level detail; the schema fully documents the folder enum and the optional pattern. No compensation is needed because the schema is already complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear action and object: 'List files in a configured folder.' The folder enum in the schema adds specificity, and the verb 'List' distinguishes it from read_file and search_files. However, 'configured folder' is a bit vague and does not explicitly contrast with siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given for when to use this tool versus search_files or read_file. The context is implied by the name and description, but there are no explicit alternatives, exclusions, or conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_fileA
Read the content of a specific file
| Name | Required | Description | Default |
|---|---|---|---|
| folder | Yes | Folder name containing the file. Available: documents, reports, desktop | |
| filename | Yes | Name of the file to read |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. 'Read' implies a non-mutating operation, but the description gives no details about return format, encoding, error behavior, or side effects. It is acceptable for a simple read but minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no redundant words. The action and object are front-loaded, and every word contributes to meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a straightforward read tool with a well-defined schema and two clearly related siblings, the description is sufficient. The expected output—file content—is directly implied by 'Read the content'.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%: both folder and filename are described, and folder includes an explicit enum. The description adds no parameter-level meaning beyond the schema, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Read') and resource ('a specific file'), clearly distinguishing it from sibling tools list_files and search_files. The purpose is immediately understandable and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The intended context is clear: use this tool when you need the contents of a known file, rather than listing or searching for files. It does not explicitly name alternatives or exclusion cases, but the contrast with siblings is implicit and strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_filesA
Search for files containing specific text
| Name | Required | Description | Default |
|---|---|---|---|
| folder | Yes | Folder name to search in. Available: documents, reports, desktop | |
| searchText | Yes | Text to search for in file contents | |
| caseSensitive | No | Whether search should be case sensitive |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. 'Search' conveys a read-only intent, and 'containing specific text' clarifies that it searches file contents rather than filenames. However, it does not describe the return format, whether search is recursive, or any other behavioral nuances such as limits or exclusions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, tight sentence with no wasted words. It conveys the core action and target resource immediately, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool, the core behavior and schema-defined parameters are sufficiently clear. However, there is no output schema and the description does not mention what the tool returns (e.g., file paths, matching lines), leaving a minor gap in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the parameters are already well documented. The description adds no additional meaning beyond what the schema provides, which meets the baseline but does not exceed it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: searching files by text content. It clearly distinguishes this tool from siblings list_files and read_file, since the focus is on finding files that contain specific text rather than listing or reading files.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when you need to locate files containing particular text. However, it does not explicitly mention alternatives or provide exclusion criteria, such as 'use list_files to enumerate files' or 'use read_file to view contents.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.0.0- First observed
list_files - First observed
read_file - First observed
search_files
TDQS
Scored across 3 tools
Each tool targets a distinct operation: listing directory entries, reading one file's content, and searching for files by text. There is little risk of an agent selecting the wrong tool.
All three tools follow a consistent verb_noun snake_case pattern (list_files, read_file, search_files). The singular/plural noun forms are conventional and do not create ambiguity.
Three tools is minimal but reasonable for a narrowly scoped read-only file access server. It is slightly lean, but every tool covers a distinct and useful operation.
Despite the 'File Server' name, there are no create, write, update, move, or delete operations, leaving file modification workflows impossible. Agents can only read and search, so the surface is notably incomplete for general file management.
Related MCP Connectors
Browse and manage files in your Moxt AI workspace from any MCP client.
Manage files and folders directly from your workspace. Read and write files, list directories, cre…
Persistent file storage for AI agents via MCP and curl. Upload, download, and version files.
Manage portable AI agent playbooks, Agent Skills, MCP configurations, personas, and memory.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides safe local file operations through MCP, including reading, writing, searching, organizing, and protected deletion with configurable path restrictions.121-
- AlicenseNot gradedqualityDmaintenanceProvides secure access to local files from specified directories. Enables listing files, reading contents, and configurable file size and extension filtering.1MIT
- AlicenseNot gradedqualityDmaintenanceEnables file system operations such as listing directories, reading, writing, creating, and deleting files or directories through MCP.12 npmMIT
- FlicenseNot gradedqualityDmaintenanceEnables file system operations like listing, reading, writing, deleting, and renaming files within a specified folder via a FastAPI-based MCP server.-