This MCP server implementation provides file system operations through a standardized interface. Built using the Model Context Protocol SDK, it offers tools for reading, creating, and listing files on the local file system. The server includes features like performance monitoring through Sentry integration and communicates via stdin/stdout using the MCP protocol, making it suitable for AI models to perform file operations in a controlled manner.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Creates a new file at the specified path with the provided content. Parameters: filePath (string), content (string). Returns: Success message with file path and size information.
Reads the content of a file at the specified path. Parameters: filePath (string). Returns: The content of the file.
Lists files and directories at the specified path. Parameters: path (string). Returns: A markdown table containing file names, sizes, and types.