Skip to main content
Glama
PatrickSekey

MCP Filesystem Server

by PatrickSekey

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PYTHONPATHNoThe path to the source directory, e.g., C:\mcp-filesystem-server\src

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}

Tools

Functions exposed to the LLM to take actions

NameDescription
read_fileC

Read PDF, TXT, DOCX, MD, JSON files with rich metadata

list_filesC

List files in a directory with optional extension filtering

write_fileC

Write content to a file with automatic directory creation

search_in_fileA

Search for a query inside a file, returning matches with context

watch_directoryC

Watch a directory for changes over a fixed duration (MCP-bound watcher)

batch_processC

Process multiple files in a single call (read/stat/summary)

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
Server Info
Server Metrics

TDQS

B3.3/5.0

Scored across 6 tools

Disambiguation4/5

Most tools target distinct actions (read, list, write, search, watch), but batch_process overlaps with read_file and list_files by performing multi-file reads and summaries, creating minor ambiguity about when to use it versus the single-file tools.

Naming Consistency4/5

All names use snake_case and mostly follow a verb_noun pattern (read_file, list_files, write_file, search_in_file, watch_directory). batch_process deviates slightly from verb_noun order, but the convention remains readable.

Tool Count5/5

Six tools is well-scoped for a filesystem server, with each tool covering a distinct operation (read, list, write, search, watch, batch) and no redundant endpoints.

Completeness3/5

Core read/write/search/list/watch workflows are present, but the filesystem surface lacks common operations like delete, move/rename, and copy. These are notable gaps for a general filesystem server.

Maintenance

ActivityMaintained
ResponsivenessNo issues