Provides a filesystem and web access MCP server that enables AI agents to interact with local files and web resources through a set of standardized tools. Built for the Devoxx ecosystem, this server supports operations like reading, writing, searching, and editing files, as well as fetching web page content, with robust error handling and detailed JSON responses. Particularly useful for AI assistants that need to perform file system and web research tasks without direct user intervention.
No reviews yet. Be the first to review!
Sign in to join the conversation
Reads the complete contents of a file from the file system. Parameters: fullPathFile (String)
Creates a new file or completely overwrites an existing file with new content. Parameters: path (String), content (String)
Makes line-based edits to a text file. Parameters: path (String), edits (String), dryRun (Boolean)
Recursively searches for files and directories matching a pattern. Parameters: path (String), pattern (String)
Gets a detailed listing of all files and directories in a specified path. Parameters: path (String)
Searches for text patterns within files. Parameters: directory (String), pattern (String), fileExtension (String), useRegex (Boolean), contextLines (Integer), maxResults (Integer), ignoreCase (Boolean)
Creates new directories or ensures that directories exist. Parameters: directories (List<String>)
Execute a Bash command in the system shell and return the output. Parameters: command (String), workingDirectory (String), timeoutSeconds (Integer)
Fetches or reads a webpage from a URL and returns its content. Parameters: url (String), timeoutMs (Integer)