chuk-mcp-vfs
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| workspace_createC | Create a new virtual filesystem workspace. |
| workspace_destroyC | Destroy a workspace and clean up all resources. |
| workspace_listB | List all workspaces. |
| workspace_switchC | Switch to a different workspace. |
| workspace_infoC | Get detailed information about a workspace. |
| workspace_mountC | Mount workspace via FUSE. |
| workspace_unmountD | Unmount workspace. |
| readC | Read file contents. |
| writeC | Write content to file. |
| lsC | List directory contents. |
| treeC | Display directory tree structure. |
| mkdirC | Create directory. |
| rmC | Remove file or directory. |
| mvC | Move/rename file or directory. |
| cpC | Copy file or directory. |
| cdC | Change current working directory. |
| pwdA | Get current working directory. |
| findC | Find files matching a pattern. |
| grepC | Search file contents for a pattern. |
| checkpoint_createC | Create a checkpoint of the current workspace state. |
| checkpoint_restoreC | Restore workspace to a checkpoint. |
| checkpoint_listB | List all checkpoints for the current workspace. |
| checkpoint_deleteB | Delete a checkpoint. |
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 23 tools
Each tool has a clearly distinct purpose with no ambiguity, covering specific filesystem operations, workspace management, or checkpoint functions. For example, 'ls' lists directory contents while 'tree' shows a tree structure, and 'workspace_create' creates a workspace versus 'workspace_switch' changes the active one. The descriptions reinforce these distinctions, making misselection unlikely.
Tool names follow a highly consistent verb_noun pattern throughout, such as 'checkpoint_create', 'workspace_list', and 'mkdir'. All tools use snake_case with clear, descriptive verbs aligned with their functions, like 'read', 'write', 'find', and 'grep'. There are no deviations in naming conventions, making the set predictable and readable.
With 23 tools, the count is slightly high but reasonable for a virtual filesystem server that aims to provide comprehensive file and workspace management. It covers core operations (e.g., read, write, ls), advanced features (e.g., checkpoints, workspaces), and utilities (e.g., grep, find), though it might feel heavy compared to simpler servers. Each tool appears to earn its place without obvious redundancy.
The tool surface is complete for the virtual filesystem domain, offering full CRUD and lifecycle coverage for files, directories, workspaces, and checkpoints. It includes creation (mkdir, workspace_create), reading (read, ls), updating (write, mv), deletion (rm, workspace_destroy), and management operations (e.g., checkpoint_restore, workspace_switch), with no apparent gaps that would cause agent failures in typical workflows.