File Server MCP
Enables accessing and managing files from configured folders with filtering and size limits, allowing listing, reading, and searching files via MCP tools and resources.
README
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
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 build
MCP 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 folder
Read a File
Use the read_file tool with folder="reports" and filename="backup-report.csv" to read a specific file
Search 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 file
Security 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 server
Development
# Watch mode for development
npm run dev
# Build for production
npm run build
# Test the server
npm start
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.