Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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.md

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 matching
  • read_file: Read the content of a specific file
  • search_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\Documents
  • reports: C:\Support
  • desktop: C:\Users\bill\Desktop
  • backup_scripts: C:\support

Environment Variables

  • FILE_SERVER_CONFIG: JSON string with custom configuration
  • DOCUMENTS_FOLDER: Override documents folder path
  • REPORTS_FOLDER: Override reports folder path
  • DESKTOP_FOLDER: Override desktop folder path

Configuration File

Edit config.json to customize: ``json { "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

  1. Install Node.js (https://nodejs.org/)
  2. 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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.