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 a 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.