Skip to main content
Glama
elyasbromand

mcp-file-manager

by elyasbromand

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GEMINI_API_KEYYesYour Gemini API key from Google AI Studio

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
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_directoryA

List all files and folders in the given directory path.

read_fileA

Read and return the full text content of a file at the given path.

write_fileA

Create a file (or overwrite it if it exists) with the given text content.

delete_fileB

Delete the file at the given path.

update_fileA

Find and replace text inside a file.

Use this when the user asks to change, replace, or update specific text within an existing file (e.g. "change X to Y in report.txt").

Args: path: Path to the file to modify. old_text: The exact existing text to search for. new_text: The text to replace it with. replace_all: If True (default), replace every occurrence. If False, replace only the first occurrence.

Prompts

Interactive templates invoked by user choice

NameDescription
summarize_fileAsk the assistant to summarize the contents of a file.
clean_up_codeAsk the assistant to review and clean up a code file.

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a distinct purpose: listing, reading, writing, deleting, and updating files. The update_file tool's find/replace behavior is clearly differentiated from write_file's full-content overwrite, so there is no ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: list_directory, read_file, write_file, delete_file, update_file. This makes the API predictable and easy to navigate.

Tool Count5/5

With 5 tools, the server is well-scoped for a file manager. Each tool covers a core file operation without unnecessary redundancy or bloat.

Completeness3/5

The set covers file content CRUD (create, read, update, delete) and directory listing, but lacks directory management operations such as create/delete directory and rename/move. This leaves notable gaps for a full file manager, though the core file operations are solid.

Maintenance

ActivitySlowing
ResponsivenessNo issues