FileBrowser MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FileBrowser MCPlist files in the /home directory"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FileBrowser MCP
Model Context Protocol server for FileBrowser Quantum — a self-hosted file management web interface with REST API.
Features
File Operations: List, read, upload, download, delete files and folders
User Management: Create, update, delete users with granular permissions (admin only)
Authentication: Automatic token management with session persistence
Multi-User: Configurable credentials via environment variables
Error Handling: Clear error messages with rate-limit awareness
Related MCP server: MCP Local Filesystem Server
Installation
# Clone the repository
git clone https://github.com/FrancoMeneses/filebrowser-mcp.git
cd filebrowser-mcp
# Install dependencies
pip install -r requirements.txtConfiguration
Set environment variables for authentication:
export FB_URL="https://your-filebrowser-host:8080"
export FB_USER="your-username"
export FB_PASSWORD="your-password"With Hermes Agent
Add to ~/.hermes/config.yaml:
mcp_servers:
filebrowser:
command: "python3"
```yaml
env:
FB_URL: "https://your-filebrowser-host"
FB_USER: "your-username"
FB_PASSWORD: "your-password"
```Multi-User Setup
For different users (e.g., admin vs restricted), use separate MCP instances:
mcp_servers:
filebrowser-admin:
command: "python3"
args: ["/path/to/server.py"]
env:
FB_URL: "https://your-filebrowser-host"
FB_USER: "admin"
FB_PASSWORD: "***"
timeout: 30
filebrowser-user:
command: "python3"
args: ["/path/to/server.py"]
env:
FB_URL: "https://your-filebrowser-host"
FB_USER: "restricted-user"
FB_PASSWORD: "***"
timeout: 30Available Tools
File Operations
Tool | Description |
| List files and folders in a directory |
| Get file/folder metadata |
| Read file contents |
| Create or update a file |
| Create a new directory |
| Delete a file or folder |
| Download a file |
Permissions are managed by FileBrowser — if a user lacks permission, the API returns an error.
User Management
Tool | Description |
| List all users |
| Create user with scope and permissions |
| Update user permissions or scope |
| Delete a user |
User and permission management is done through FileBrowser's API. The MCP passes through the API responses directly.
System
Tool | Description |
| Check FileBrowser server status |
Permissions Reference
FileBrowser uses these permission flags:
Permission | Description |
| Access to admin panel and user management |
| Access to REST API |
| Edit existing files |
| Create new files and folders |
| Delete files and folders |
| Download files |
| Create public shares |
Rate Limiting
FileBrowser Quantum locks accounts after 8 failed login attempts (15-minute cooldown). The MCP handles this gracefully with clear error messages.
API Compatibility
Tested with FileBrowser Quantum v1.5.x. May work with other versions but not guaranteed.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
Browse and manage files in your Moxt AI workspace from any MCP client.
An MCP server that provides access to Testiny projects, test cases and test runs
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server enabling file operations (list, search, read, rename, move) on Google Drive and OneDrive.MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that provides secure access to local file system operations.-
- AlicenseNot gradedqualityAmaintenanceA full-featured secure MCP server for local file system operations, with built-in image processing, OCR and media tools.Apache 2.0
- FlicenseNot gradedqualityDmaintenanceA hybrid REST + MCP file server for managing files with large file streaming support, enabling AI agents and web frontends to perform file operations via MCP tools and REST APIs.-