fsext-mcp-server
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 | {} |
| logging | {} |
| completions | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fs_list_directoryC | Scan directory, return matched absolute path list. |
| fs_copy_directoryC | Copy full directory tree, overwrite controls existing target cleanup. |
| fs_move_directoryC | Move directory, fail if destination exists. |
| fs_create_fileC | Create a file, auto create missing parent directories. |
| fs_delete_fileB | Delete single regular file, reject directory. |
| fs_copy_fileC | Copy file with metadata, overwrite toggle. |
| fs_move_fileC | Move file, control overwrite behavior. |
| fs_get_file_infoC | Get full file/directory metadata. |
| fs_is_file_existsC | Check filesystem entry existence. |
| fs_read_full_textC | Read entire text file. |
| fs_read_text_rangeC | Read partial lines of text file. |
| fs_read_binary_chunkB | Read partial binary file, return base64 encoded bytes. |
| fs_write_textC | Write text content to file. |
| fs_write_binaryC | Decode base64 data to binary bytes and write bytes to file. |
| fs_search_files_by_contentC | Scan directories and return paths of files containing target text. |
| fs_search_in_files_by_contentC | Search multiple files and return matched lines with context. |
| fs_search_in_file_by_contentB | Search single file and return matched lines with context. |
| fs_file_replaceC | Replace text content inside file, return match count. |
| fs_image_resizeC | Resize image with ratio lock and padding support. |
| fs_image_cropC | Crop rectangular region from image. |
| fs_image_rotateC | Rotate image clockwise. |
| fs_ocr_extract_textB | Extract text from image via Tesseract OCR. |
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 22 tools
Every tool has a clearly distinct purpose, from file operations to image manipulation and OCR, with no ambiguity between them.
All tools use the 'fs_' prefix and follow a consistent verb_noun pattern (e.g., fs_copy_directory, fs_read_text_range), making them predictable.
22 tools cover a broad range of file system tasks, which is slightly above the typical well-scoped range but still reasonable given the scope.
The set includes many useful operations but omits fundamental ones like directory deletion and file renaming, leaving notable gaps.