The CloudRoam MCP server lets Claude, or any MCP-capable agent, run your backups, connect clouds, create shares, and organize files for you. It is one small file with no dependencies. Your files are never read by the agent; it only calls the same API the web app uses, with a key you can revoke any time.
In CloudRoam, open your account menu, Account Settings, API keys, and click Create API key. Copy it once, it looks like crk_....
Save cloudroam-mcp.mjs somewhere on your machine. You need Node 18 or newer.
Add it to your MCP client with two environment variables. Claude Desktop, in claude_desktop_config.json:
{
"mcpServers": {
"cloudroam": {
"command": "node",
"args": ["/absolute/path/to/cloudroam-mcp.mjs"],
"env": {
"CLOUDROAM_API_KEY": "crk_your_key_here",
"CLOUDROAM_BASE_URL": "https://cloudroam.io"
}
}
}
}
Claude Code, from a terminal:
CLOUDROAM_API_KEY=crk_your_key_here \
claude mcp add cloudroam -- node /absolute/path/to/cloudroam-mcp.mjs
list_connectorsSee the clouds on your account.
create_connectorConnect S3, S3-compatible, Azure, SFTP, WebDAV or SMB with keys.
create_multicloudMirror one folder across 2 to 4 clouds at once.
create_backup_scheduleMirror, copy or move a folder between clouds on an interval.
run_backup_scheduleRun a backup right now.
get_backup_logWhen it last ran, how many files, size, status.
list_backup_schedulesEvery schedule and its last run.
list_filesBrowse a bucket or folder.
move_fileSort files into folders, rename, reorganize.
create_file_shareA public link to one file, with expiry and password.
create_folder_shareA public link to a whole folder, upload optional.
list_sharesAll active share links.
revoke_shareKill a link immediately.
Once connected, just talk to your agent in plain language:
Connect my AWS account. Access key AKIA..., secret ...,
region eu-west-1, name it "Company S3".
Back up the invoices folder on Company S3 to my OneDrive
every night, keep the originals.
Run all over my documents in the "office" bucket and sort
them into folders by type: Invoice, Letter, Contract,
Receipt, and anything else you think fits.
Share the 2025 audit folder with a 7 day link and a password,
and send me the URL.