Skip to content

CLI Reference

cloud-fs-mcp <provider> <root-uri> [root-uri...] [options]

Providers

ProviderURI formatDescription
s3s3://bucket[/prefix]AWS S3 or S3-compatible (MinIO, RustFS)
azureaz://container[/prefix]Azure Blob Storage
gcsgs://bucket[/prefix]Google Cloud Storage
memorymem://nameIn-memory (ephemeral, for demos)
sqlitesqlite://nameSQLite (persistent local)

Transport & Network

FlagDefaultDescription
--transport <stdio|http|ws>stdioTransport protocol
--port <number>3000Listen port (http/ws only)
--host <address>127.0.0.1Bind address (http/ws only)

Authentication

FlagDefaultDescription
--auth <none|builtin|external>noneAuth mode (http/ws only)
--auth-issuer <url>OAuth issuer URL (builtin mode)
--auth-jwks-uri <url>JWKS URI (external mode)
--auth-audience <string>Expected token audience (external mode)
--auth-client-credentialsfalseEnable Client Credentials ext-auth flow
--auth-enterprise-idp <url>Enable Enterprise-Managed Authorization

Production

FlagDefaultDescription
--cors-origin <origin>Allowed CORS origin (repeatable)
--rate-limit <req/min>0 (off)Rate limit per client
--rate-limit-burst <n>10Burst allowance
--request-loggingfalseEnable structured JSON request logging

Storage & Cache

FlagDefaultDescription
--region <region>Cloud region (S3, GCS)
--endpoint <url>Custom endpoint for S3-compatible backends
--cache-store <memory|fs|redis>memoryCache backend
--cache-ttl <seconds>60Cache TTL in seconds
--sync-debounce <ms>2000Write flush delay in ms
--cache-dir <path>Directory for fs cache store
--no-cacheBypass cache entirely (pass-through mode)
--gcs-endpoint <url>Custom endpoint for GCS
--sqlite-db <path>SQLite database file path

Tools

FlagDefaultDescription
--enable-deletefalseEnable the delete_file tool
--enable-shellfalseEnable the shell tool
--grep-max-objects <n>1000Max objects grep_files scans per call
--seed-demofalseSeed VFS with sample files for demo

INFO

Credentials are always sourced from SDK credential chains — never CLI flags. See Provider Setup for details.

Released under the PolyForm Shield 1.0.0 License.