Skip to main content
Glama
FrancoMeneses

FileBrowser MCP

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

Configuration

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: 30

Available Tools

File Operations

Tool

Description

list_files

List files and folders in a directory

get_file_info

Get file/folder metadata

read_file

Read file contents

upload_file

Create or update a file

create_folder

Create a new directory

delete_item

Delete a file or folder

download_file

Download a file

Permissions are managed by FileBrowser — if a user lacks permission, the API returns an error.

User Management

Tool

Description

list_users

List all users

create_user

Create user with scope and permissions

update_user

Update user permissions or scope

delete_user

Delete a user

User and permission management is done through FileBrowser's API. The MCP passes through the API responses directly.

System

Tool

Description

health_check

Check FileBrowser server status

Permissions Reference

FileBrowser uses these permission flags:

Permission

Description

admin

Access to admin panel and user management

api

Access to REST API

modify

Edit existing files

create

Create new files and folders

delete

Delete files and folders

download

Download files

share

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

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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

View all MCP Connectors

Latest Blog Posts

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