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.
No reviews yet. Be the first to review!
Sign in to join the conversation
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.