Skip to main content
Glama
Ashu-codeai

jioaicloud-mcp-server

by Ashu-codeai

JioAICloud Local MCP Server

Local Model Context Protocol (MCP) server for managing your JioAICloud backups from Cursor: inventory photos/videos/documents, find duplicates, and safely trash duplicates.

JioAICloud has no public developer API. This server talks to the same private HTTPS endpoints used by https://www.jioaicloud.com. Use it only with your own account.

Features

  • Auth with Mobile + Passphrase (saved session for day-to-day use)

  • First-time OTP helpers when no local session exists yet

  • Browse / search backups (photos, videos, documents)

  • Create / list / rename / move-into / trash folder albums

  • List / create / add-to / delete native JioAICloud board albums

  • Storage quota summary

  • Duplicate detection (checksum, else name+size)

  • Safe deletes (dry-run by default; trash API)

  • Download files and export inventory JSON/CSV

Related MCP server: File Organizer MCP

Setup

npm install
cp .env.example .env

Edit .env (do not commit it):

JIOAICLOUD_ID=your-jio-id-or-login
JIOAICLOUD_MOBILE=91XXXXXXXXXX
JIOAICLOUD_PASSPHRASE=your-passphrase

Optional for first login only:

JIOAICLOUD_OTP=123456

Run

npm run dev
# or
npm run build && npm start

Cursor MCP config

Add to your Cursor MCP settings (mcp.json):

{
  "mcpServers": {
    "jioaicloud": {
      "command": "node",
      "args": ["dist/index.js"],
      "cwd": "/absolute/path/to/jio-mcp-server"
    }
  }
}

On Windows, set cwd to your full project path with escaped backslashes, e.g. "C:\\path\\to\\jio-mcp-server".

Put credentials in the project .env only (not in mcp.json). Run npm run build after code changes.

First login flow

JioAICloud’s web API requires an OTP to create a new device session. After that, Mobile + Passphrase (saved under .session/) is enough.

  1. Call jio_send_otp

  2. Call jio_verify_otp with the SMS code (or set JIOAICLOUD_OTP and call jio_login)

  3. Passphrase unlock runs automatically when 2FA/passphrase is enabled

  4. Later sessions: just jio_login

You can also call jio_import_session with userData JSON exported from the browser’s localStorage if you already have a logged-in web session.

Tools

Tool

Purpose

jio_login

Establish/refresh session + passphrase unlock

jio_send_otp / jio_verify_otp

First-time device login

jio_unlock_passphrase

Unlock passphrase 2FA

jio_auth_status

Session status (no secrets)

jio_import_session

Import browser userData JSON

jio_logout

Clear local session

jio_storage_usage

Quota / used storage

jio_list_files

List folder contents

jio_list_photos / jio_list_videos / jio_list_documents

Media inventories

jio_get_file

File metadata

jio_search_files

Keyword search

jio_backup_summary

Counts/bytes by category

jio_find_duplicates

Duplicate groups

jio_duplicate_report

Last duplicate report

jio_delete_files

Trash by ids (dry_run default)

jio_delete_duplicates

Trash duplicate candidates (dry_run default)

jio_download_file

Download to downloads/

jio_export_inventory

Export JSON/CSV inventory

jio_list_albums

List folder albums (kind=folder) or native boards (kind=board)

jio_create_album

Create folder album or native board album

jio_rename_album

Rename a folder album

jio_move_to_album

Move files/folders into a folder album

jio_add_to_board

Add Drive files into a native board album (boardId + ids)

jio_delete_album

Delete folder albums (trash) or board albums (kind=board, dry_run default)

Albums notes

  • Folder albums (kind=folder) are normal My Files folders — this is what the organize scripts use (year/month albums under Photo Albums).

  • Board albums (kind=board) are native JioAICloud Albums. Create/list with album tools; add Drive files with jio_add_to_board; delete/leave with jio_delete_album (kind=board, PUT /invites/boards/{boardKey}/unjoin). Board delete does not trash the underlying Drive files.

  • Folder album delete uses Trash (recoverable). Board unjoin removes the album from your list.

Delete safety

  • dry_run defaults to true

  • Real deletes require dry_run=false and confirm=true

  • Max 50 ids per delete call

  • Deletes use the trash API (recoverable from JioAICloud Trash)

Security

  • Never paste credentials into chat

  • .env and .session/ are gitignored

  • Tokens are not printed by auth status tools

Inspector

npm run inspector

License

MIT — personal use with your own JioAICloud account.

Install Server
F
license - not found
B
quality
C
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

  • F
    license
    A
    quality
    B
    maintenance
    An MCP server for Immich self-hosted photo management that provides AI-accessible tools for browsing, searching, organizing, and managing photo libraries with duplicate detection and safe deletion workflows.
    43
    1
  • A
    license
    -
    quality
    A
    maintenance
    A powerful, security-hardened MCP server for intelligent file organization. Provides high-level atomic tools for organizing files into categories, detecting duplicates, extracting EXIF/ID3 metadata, scheduling automatic organization, and more — for use with Claude, Cursor, and Gemini CLI.
    25
    43
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    Local-first MCP server for safely searching, reading, summarizing, tagging, deduplicating, and organizing local files with scoped access, read-only defaults, and dry-run plans.
    14
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Read-only MCP server that exposes your local Notion backups to AI agents — query databases, read pages, search a backed-up workspace. Offline by default: no LLM calls, no telemetry, no cloud.
    6
    MIT

View all related MCP servers

Related MCP Connectors

  • Cloud-hosted MCP server for durable AI memory

  • Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and 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/Ashu-codeai/jioaicloud-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server