Skip to main content
Glama
Adithyenkandasamy

MCP File Manager

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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_filesA
List files and directories in the specified path within the workspace.

Args:
    directory: Relative path to the directory (default is root of workspace).
read_fileB
Read the contents of a text file.

Args:
    file_path: Relative path to the file.
file_infoA
Get metadata about a file.

Args:
    file_path: Relative path to the file.
search_filesA
Recursively search for files whose names contain the keyword.
Searches from the current working directory.

Args:
    keyword: String to search for in filenames.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 4 tools

Disambiguation5/5

Each tool targets a distinct file operation: listing directory contents, reading file content, fetching metadata, and searching filenames. There is no overlap, so an agent can easily choose the right tool.

Naming Consistency4/5

Three tools use the verb_noun pattern (list_files, read_file, search_files), but file_info is a noun phrase rather than a verb action. The naming is mostly consistent but has a minor deviation.

Tool Count5/5

Four tools is a well-scoped number for a focused file management server. Each tool serves a clear purpose without unnecessary bloat.

Completeness2/5

The server only provides read-only operations (list, read, info, search). There are no tools for creating, editing, or deleting files, which are essential for a true file manager, leaving significant gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues