jioaicloud-mcp-server

jioaicloud-mcp-server

Local MCP server for managing JioAICloud backups from Cursor, enabling browsing, duplicate detection, safe trashing, album management, and inventory exports using your own account.

Category
Visit Server

README

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

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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured