Agentic Filesystem MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| copyB | Copies a file or directory to a new location. IMPORTANT: This operation fails if the destination path already exists. |
| editA | Performs exact string replacement in a file. Useful for making partial changes to an existing file. |
| globA | Searches for files or directories matching a glob pattern and returns them sorted by modification time. |
| grepB | Searches file contents using regular expressions. |
| mkdirA | Creates a new directory. IMPORTANT: The |
| moveB | Moves or renames a file or directory. IMPORTANT: If the destination path already exists, it will be overwritten. Always verify the destination path before calling. |
| readB | Reads the contents of a file. Supports text files and media files. |
| removeA | Removes a file or directory. IMPORTANT: This action is permanent. Always verify the path before calling. |
| statA | Gets information about a file or directory, including its file type, size, creation time, modification time, access time, and permissions. |
| writeA | Writes a file, automatically creating any missing parent directories. Completely overwrites the file if one already exists. IMPORTANT: Because it overwrites entirely, ensure you have the complete file context before modifying existing files. For partial changes to existing files, prefer using the |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool performs a uniquely identifiable filesystem operation with no overlap: remove, copy, edit, glob, grep, mkdir, move, read, stat, and write are clearly distinct. Even edit and write are differentiated by partial vs full overwrite, and move vs copy are precise.
All tool names are single lowercase imperative verbs (remove, copy, edit, etc.), forming a consistent pattern. Abbreviations like mkdir and stat are conventional and do not break the overall coherence.
Ten tools is well within the ideal 3–15 range and each tool serves a fundamental filesystem need. The scope is appropriate for a dedicated filesystem MCP server without bloat or redundancy.
The set covers the core lifecycle: read, write, edit, delete, copy, move, create directory, and stat. A dedicated directory listing tool is missing, but glob can substitute. Minor gap but manageable overall.