Skip to main content

Omni-FS-MCP is an MCP server that supports managing multiple types of file systems, such as local FS, S3, R2, B2, WebDAV, and others, in one MCP server. It is built on top of OpenDAL.

Project description

Omni-FS MCP Server

Omni-FS-MCP is an MCP (Model Context Protocol) server that supports managing multiple types of file systems simultaneously, such as local FS, S3, R2, B2, WebDAV, and others, in one unified MCP server. It is built on top of OpenDAL and provides comprehensive multi-backend support.

Features

  • Multiple Backend Support: Manage multiple file systems simultaneously (local, S3, WebDAV, etc.)
  • Dual Transport Support: Supports both stdio and streamable-http transports

Installation

# Install using uv (recommended)
uv add omni-fs-mcp

# Or install using pip
pip install omni-fs-mcp

Quick Start

Single Backend Mode (Backward Compatible)

# Local filesystem
omni-fs-mcp-stdio "fs:///"

# S3
omni-fs-mcp-http "s3://bucket-name?region=us-east-1&access_key_id=xxx&secret_access_key=yyy"

# WebDAV
omni-fs-mcp-stdio "webdav://example.com/webdav?username=user&password=pass"

# Memory (for testing)
omni-fs-mcp-stdio "memory:///"

Multi-Backend Mode with Configuration

Create a configuration file (backends.json):

{
  "backends": [
    {
      "name": "local",
      "url": "fs:///",
      "description": "Local filesystem access",
      "default": true
    },
    {
      "name": "s3-prod",
      "url": "s3://my-bucket?region=us-east-1&access_key_id=AKIA...&secret_access_key=...",
      "description": "Production S3 bucket",
      "readonly": false
    },
    {
      "name": "backup",
      "url": "s3://backup-bucket?region=us-west-2&access_key_id=...",
      "description": "Backup storage (read-only)",
      "readonly": true
    }
  ]
}

Start the server with the configuration:

# Stdio transport
omni-fs-mcp-stdio backends.json

# Or HTTP transport
omni-fs-mcp-http --config backends.json --port 8080

Available Tools

File Operations

All file operations support an optional backend parameter. If not specified, the default backend is used.

  1. list_files(path="/", backend=None) - List files and directories
  2. read_file(path, backend=None) - Read file contents as text
  3. write_file(path, content, backend=None) - Write content to a file
  4. copy_file(src, dst, src_backend=None, dst_backend=None) - Copy files (supports cross-backend)
  5. rename_file(src, dst, backend=None) - Rename or move files/directories
  6. create_dir(path, backend=None) - Create a directory
  7. stat_file(path, backend=None) - Get file/directory metadata

Backend Management

  1. register_backend(name, url, ...) - Register a new backend
  2. list_backends() - List all registered backends
  3. set_default_backend(name) - Set the default backend
  4. remove_backend(name, force=False) - Remove a backend
  5. check_backend_health(backend=None) - Check backend connectivity
  6. get_backend_stats() - Get backend statistics

Configuration

JSON Configuration Properties

  • name (required): Unique backend identifier (alphanumeric, hyphens, underscores only)
  • url (required): Backend connection URL
  • description (optional): Human-readable description
  • default (optional): Set as default backend (default: false)
  • readonly (optional): Prevent write operations (default: false)
  • timeout (optional): Connection timeout in seconds (default: 30)
  • retry_attempts (optional): Retry attempts for failed operations (default: 3)
  • validate_connection (optional): Validate connection during registration (default: true)

Supported Backends

Thanks to OpenDAL, this MCP server supports numerous storage backends:

Backend Type URL Scheme Example URL
Local Filesystem fs:// fs:///
AWS S3 s3:// s3://bucket?region=us-east-1&access_key_id=...
WebDAV webdav:// webdav://server.com/path?username=user&password=pass
In-Memory memory:// memory:///
FTP ftp:// ftp://server.com:21?username=user&password=pass
HTTP/HTTPS http://, https:// https://files.example.com/api
And many more Various See OpenDAL documentation

Usage Examples

Cross-Backend Operations

# Backup local file to S3
copy_file("/important/document.pdf", "/backups/document.pdf",
          src_backend="local", dst_backend="s3-backup")

# Sync from production to staging
copy_file("/data/config.json", "/staging/config.json",
          src_backend="s3-prod", dst_backend="s3-staging")

Backend Management

# Register a new backend at runtime
register_backend(
    name="temp-storage",
    url="memory:///",
    description="Temporary in-memory storage",
    set_as_default=False
)

# List all backends with their status
backends = list_backends()

# Check backend health
health = check_backend_health()  # All backends
health = check_backend_health("s3-prod")  # Specific backend

Development Workflow

# Work locally
write_file("/project/index.html", html_content, backend="local")

# Test and validate...

# Deploy to production
copy_file("/project/index.html", "/www/index.html",
          src_backend="local", dst_backend="webdav-server")

Command Line Interface

General Command

# Stdio transport (default)
omni-fs-mcp [--config config.json] [url] --transport stdio

# HTTP transport
omni-fs-mcp [--config config.json] [url] --transport streamable-http --port 8080

Transport-Specific Commands

For stdio transport (local connections):

omni-fs-mcp-stdio [config.json|url]

For HTTP transport (remote connections):

omni-fs-mcp-http [--config config.json] [url] [--port 8080] [--host localhost]

Transport Modes

Stdio Transport

  • Use case: Local integrations, development, CLI tools
  • Advantages: Simple setup, no network configuration
  • Communication: Standard input/output streams

Streamable HTTP Transport

  • Use case: Remote connections, web applications, cloud deployments
  • Advantages: Network accessible, scalable, cloud-friendly
  • Communication: HTTP with bidirectional streaming

Advanced Features

Read-Only Backends

Prevent accidental modifications by configuring backends as read-only:

{
  "name": "backup-storage",
  "url": "s3://backup-bucket?...",
  "readonly": true
}

Health Monitoring

The system provides comprehensive health monitoring:

  • Connection validation during registration
  • Real-time health checks via check_backend_health()
  • Health status included in list_backends() output
  • Automatic health updates during operations

Error Handling

Comprehensive error handling for:

  • Configuration errors (invalid names, URLs, parameters)
  • Connection errors (failed backend connections)
  • Operation errors (file not found, permission denied, timeouts)
  • Read-only violations
  • Backend not found errors

Example Configurations

Development Environment

{
  "backends": [
    {
      "name": "local-dev",
      "url": "fs:///",
      "description": "Local development files",
      "default": true
    },
    {
      "name": "memory-temp",
      "url": "memory:///",
      "description": "Temporary storage for testing"
    }
  ]
}

Production Environment

{
  "backends": [
    {
      "name": "app-data",
      "url": "s3://production-app-data?region=us-east-1&access_key_id=...",
      "description": "Production application data",
      "default": true,
      "timeout": 60,
      "retry_attempts": 5
    },
    {
      "name": "user-uploads",
      "url": "s3://user-uploads-bucket?region=us-east-1&access_key_id=...",
      "description": "User uploaded files"
    },
    {
      "name": "backups",
      "url": "s3://backup-storage?region=us-west-2&access_key_id=...",
      "description": "Read-only backup storage",
      "readonly": true
    }
  ]
}

Development

# Clone the repository
git clone <repository-url>
cd omni-fs-mcp

# Install development dependencies
uv sync

# Run tests
uv run pytest

# Run the server in development
uv run omni-fs-mcp-stdio "memory:///"

# Test multi-backend setup
uv run omni-fs-mcp-stdio examples/demo_config.json

Security Considerations

  1. Credential Management: Store sensitive credentials securely, avoid hardcoding in config files
  2. Read-Only Configuration: Use read-only backends for sensitive or archived data
  3. Network Security: Use HTTPS/TLS for network-based backends when possible
  4. Access Control: Implement proper IAM policies for cloud storage backends
  5. Logging: Monitor backend access and operations for security auditing

Troubleshooting

Common Issues

  1. Backend Registration Fails

    • Check URL format and credentials
    • Verify network connectivity
    • Try with validate_connection=false for testing
  2. Cross-Backend Copy Fails

    • Ensure both backends are healthy
    • Check that destination backend is not read-only
    • Verify file paths exist in source backend
  3. Performance Issues

    • Adjust timeout and retry_attempts for slow backends
    • Use health checks to identify problematic backends
    • Consider backend proximity for cross-backend operations

Debug Mode

Enable debug logging for detailed troubleshooting:

import logging
logging.basicConfig(level=logging.DEBUG)

Migration from Single Backend

The multi-backend server is fully backward compatible. To migrate:

  1. Existing single-backend commands continue to work unchanged
  2. Optionally create a configuration file for additional backends
  3. Gradually adopt multi-backend features as needed

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

omni_fs_mcp-0.1.3.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

omni_fs_mcp-0.1.3-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

File details

Details for the file omni_fs_mcp-0.1.3.tar.gz.

File metadata

  • Download URL: omni_fs_mcp-0.1.3.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for omni_fs_mcp-0.1.3.tar.gz
Algorithm Hash digest
SHA256 17077f6818edc88430a125cc2bc37c8b8bd66f9abe43a89316e790f32bda28df
MD5 75545b30d4ef335fd2619a040c9c2914
BLAKE2b-256 a5f0306b3b18ac6e4e7fdf82b0cca1ac60f546afe121f64dfb37f824ea273ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for omni_fs_mcp-0.1.3.tar.gz:

Publisher: release.yml on vaayne/omni-fs-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omni_fs_mcp-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: omni_fs_mcp-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for omni_fs_mcp-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4a89ccc07d12fc83b96d0b6cd33cebdfd441870c8038f8a159c79c5ad052b55d
MD5 fd38445206f1de5a626f80aa6b080765
BLAKE2b-256 7edc4a1c03500acb4c3e00781ab02eddaadf078d2ee8fdd556e480fb21e75492

See more details on using hashes here.

Provenance

The following attestation bundles were made for omni_fs_mcp-0.1.3-py3-none-any.whl:

Publisher: release.yml on vaayne/omni-fs-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page