# io.github.ExpertVagabond/mega (npm · mega-mcp-server)

MEGA cloud storage CLI MCP server

- Trust score: 63/100 (medium)
- Change this week: +23
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `mega-mcp-server`: 63/100 (this document), [markdown](https://verifymcp.io/servers/expertvagabond-mega/mega-mcp-server.md), [page](https://verifymcp.io/servers/expertvagabond-mega/mega-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `mega-mcp-server`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL redirects; it must resolve directly.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 169 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 825 tokens (~41/item across 20 items; 20 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add expertvagabond-mega -- npx -y mega-mcp-server
```

### Codex

```bash
codex mcp add expertvagabond-mega -- npx -y mega-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "expertvagabond-mega": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mega-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add expertvagabond-mega --command npx --arg -y --arg mega-mcp-server
```

### Hermes

```yaml
mcp_servers:
  expertvagabond-mega:
    command: "npx"
    args: ["-y", "mega-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "expertvagabond-mega": {
      "command": "npx",
      "args": [
        "-y",
        "mega-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 63, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 62, +46)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-08-01 (score 16, +15)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 1, −39)

- [security regression] Malware scan: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 40)

First indexed and scored.

## MCP tools (20)

### `mega_whoami` (~19 tokens)

Get current logged-in MEGA account information

### `mega_ls` (~57 tokens)

List files and folders in MEGA cloud storage

Input parameters:

- `long` (boolean): Show detailed listing with sizes and dates
- `path` (string): Remote path to list (default: current directory)
- `recursive` (boolean): List recursively

### `mega_cd` (~29 tokens)

Change current working directory in MEGA cloud

Input parameters:

- `path` (string, required): Remote path to change to

### `mega_pwd` (~17 tokens)

Print current working directory in MEGA cloud

### `mega_mkdir` (~42 tokens)

Create a directory in MEGA cloud storage

Input parameters:

- `parents` (boolean): Create parent directories as needed
- `path` (string, required): Remote path for new directory

### `mega_rm` (~50 tokens)

Remove files or folders from MEGA cloud storage

Input parameters:

- `force` (boolean): Force removal without confirmation
- `path` (string, required): Remote path to remove
- `recursive` (boolean): Remove directories recursively

### `mega_mv` (~40 tokens)

Move or rename files/folders in MEGA cloud storage

Input parameters:

- `destination` (string, required): Destination remote path
- `source` (string, required): Source remote path

### `mega_cp` (~38 tokens)

Copy files/folders within MEGA cloud storage

Input parameters:

- `destination` (string, required): Destination remote path
- `source` (string, required): Source remote path

### `mega_get` (~49 tokens)

Download files from MEGA cloud to local filesystem

Input parameters:

- `local_path` (string): Local destination path (default: current directory)
- `remote_path` (string, required): Remote path in MEGA to download

### `mega_put` (~47 tokens)

Upload files from local filesystem to MEGA cloud

Input parameters:

- `local_path` (string, required): Local file/folder path to upload
- `remote_path` (string): Remote destination path in MEGA

### `mega_df` (~29 tokens)

Show MEGA cloud storage space usage

Input parameters:

- `human` (boolean): Show sizes in human-readable format

### `mega_du` (~39 tokens)

Show disk usage of remote path

Input parameters:

- `human` (boolean): Show sizes in human-readable format
- `path` (string): Remote path to check

### `mega_find` (~47 tokens)

Search for files/folders in MEGA cloud storage

Input parameters:

- `path` (string): Path to search in (default: /)
- `pattern` (string, required): Search pattern (supports wildcards)

### `mega_export` (~65 tokens)

Create a public link for a file/folder

Input parameters:

- `expire` (string): Expiration time (e.g., '1d', '1w', '1m')
- `password` (string): Password protect the link
- `path` (string, required): Remote path to export

### `mega_share` (~72 tokens)

Share a folder with another MEGA user

Input parameters:

- `access_level` (string): Access level: 'r' (read), 'rw' (read-write), 'full' (full access)
- `email` (string, required): Email of user to share with
- `path` (string, required): Remote folder path to share

### `mega_transfers` (~28 tokens)

Show current transfers (uploads/downloads)

Input parameters:

- `show_completed` (boolean): Include completed transfers

### `mega_sync` (~59 tokens)

Set up sync between local and remote folders

Input parameters:

- `list_only` (boolean): Just list current syncs instead of creating new one
- `local_path` (string): Local folder path
- `remote_path` (string): Remote MEGA folder path

### `mega_tree` (~26 tokens)

Show directory tree structure

Input parameters:

- `path` (string): Remote path to show tree for

### `mega_cat` (~27 tokens)

Display contents of a remote file

Input parameters:

- `path` (string, required): Remote file path to display

### `mega_import` (~45 tokens)

Import a public MEGA link to your account

Input parameters:

- `link` (string, required): MEGA public link to import
- `remote_path` (string): Destination path in your MEGA

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/expertvagabond-mega/mega-mcp-server#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 62
- 2026-08-01: 16
- 2026-07-31: 1
- 2026-07-30: 40
- 2026-07-28: 40
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/mega-mcp-server
- Socket report: https://socket.dev/npm/package/mega-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/expertvagabond-mega/mega-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/expertvagabond-mega/mega-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/expertvagabond-mega/mega-mcp-server
