FileBrowser MCP
Click on "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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.
Related MCP Connectors
MCP server for the FFmpeg Micro video transcoding API — create, monitor, download transcodes.
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FrancoMeneses/filebrowser-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server