This MCP server implementation, developed by the gomcpgo team, provides a filesystem interface for AI models. Built using Go and leveraging the gomcpgo/mcp package, it offers tools for interacting with local file systems. The implementation focuses on simplicity and efficiency, with a straightforward build and run process managed through a shell script. It's particularly useful for AI-assisted file management tasks, enabling models to perform operations like file creation, deletion, and manipulation without needing direct access to the underlying system. The server's design makes it adaptable for various use cases where AI needs to interact with local storage, such as automated file organization or content management systems.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Read single file contents. Parameters: path (string) - the path of the file to read.
Read multiple files simultaneously.
Create or overwrite files. Parameters: path (string) - the path of the file to create or overwrite.
Create new directories. Parameters: path (string) - the path of the directory to create.
List directory contents. Parameters: path (string) - the path of the directory to list.
Show accessible directories.
Move or rename files and directories. Parameters: source (string) - the current path of the file or directory, destination (string) - the new path.
Get file metadata. Parameters: path (string) - the path of the file to get metadata for.
Search files recursively with pattern matching. Parameters: pattern (string) - the pattern to search for.