Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.importly/importly-mcp

NPM · IMPORTLY-MCP · SCANNED AUG 3

Download, transcribe, and get metadata for any video/audio URL. Managed yt-dlp + speech-to-text.

Available components

+23 this week 69 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability81
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 775 tokens (~86/item across 9 items; 9 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · importly-mcp

# add to Claude Code
claude mcp add io-importly-importly-mcp -- npx -y importly-mcp
# add to Codex CLI
codex mcp add io-importly-importly-mcp -- npx -y importly-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-importly-importly-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "importly-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add io-importly-importly-mcp --command npx --arg -y --arg importly-mcp
# ~/.hermes/config.yaml
mcp_servers:
  io-importly-importly-mcp:
    command: "npx"
    args: ["-y", "importly-mcp"]
// mcp.json
{
  "mcpServers": {
    "io-importly-importly-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "importly-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +3
    • Stability: unverified → 0.23 functional
  • 2 Aug 26 +61
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Security disclosure: fail → unverified functional
    • Schema quality: unverified → excellent functional
    • Tool coverage: unverified → 100 functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Licence: MIT functional
  • 1 Aug 26 −16
    • Tool coverage: 100 → unverified functional
  • 31 Jul 26 −7
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 +4
    • Malware scan: pass → unverified security
    • Tool coverage: unverified → 100 functional
  • 28 Jul 26 −22
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 9 exposed · ~775 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
check_balance ~44

Check the remaining Importly credit balance for the configured API key. Use this to diagnose failed jobs (insufficient credits) or as a pre-flight check before large imports/transcriptions.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

check_basic_metadata ~44

Check the status of a get_basic_metadata job. Returns title, duration, and thumbnail once completed.

NameTypeReqDescription
jobIdstringyesJob id returned by get_basic_metadata

No output schema declared.

No examples provided.

check_import ~48

Check the status of an import_media job. Returns the media download URL (and transcript, if requested) once the job completes.

NameTypeReqDescription
jobIdstringyesJob id returned by import_media

No output schema declared.

No examples provided.

check_metadata ~39

Check the status of a get_metadata job. Returns the full metadata object once completed.

NameTypeReqDescription
jobIdstringyesJob id returned by get_metadata

No output schema declared.

No examples provided.

check_transcription ~45

Check the status of a transcribe_media job. Returns the transcript text and timestamped segments once completed.

NameTypeReqDescription
jobIdstringyesJob id returned by transcribe_media

No output schema declared.

No examples provided.

get_basic_metadata ~84

Fast-path metadata for a video/audio URL: title, duration, and thumbnail only. Cheaper and quicker than get_metadata — use this to identify or validate a media URL before importing or transcribing it. Async: poll check_basic_metadata with the returned jobId.

NameTypeReqDescription
urlstringyesMedia page URL, e.g. https://www.youtube.com/watch?v=...

No output schema declared.

No examples provided.

get_metadata ~110

Extract full metadata for a video/audio URL (title, description, duration, uploader, formats, thumbnails, view counts) without downloading the media. Works on YouTube, TikTok, X, and 1000+ sites — no yt-dlp to run yourself. Async: poll check_metadata with the returned jobId. For just title/duration/thumbnail, prefer the faster get_basic_metadata.

NameTypeReqDescription
urlstringyesMedia page URL, e.g. https://www.youtube.com/watch?v=...

No output schema declared.

No examples provided.

import_media ~202

Download the video/audio at any URL (YouTube, TikTok, X, and 1000+ sites) to hosted storage and get back a direct download link. Importly runs yt-dlp, rotating residential proxies, and ffmpeg server-side — no local tooling needed. Async: returns a jobId immediately; poll check_import for the result. Optionally also produce a transcript in the same job with includeTranscript.

NameTypeReqDescription
audioQualitystringDefault medium
includeAudiobooleanInclude audio stream (default true)
includeTranscriptbooleanAlso transcribe the audio in the same job
includeVideobooleanInclude video stream (default true)
transcriptLanguagestringISO language hint for the transcript, e.g. "en"
urlstringyesMedia page URL, e.g. https://www.youtube.com/watch?v=...
videoQualitystringDefault 720p

No output schema declared.

No examples provided.

transcribe_media ~159

Transcribe the audio of any video/audio URL (YouTube, TikTok, podcasts, and 1000+ sites) to text with timestamped segments. Importly handles the download, audio extraction, and speech-to-text server-side — no yt-dlp or ffmpeg needed. Async: returns a jobId immediately; poll check_transcription for the transcript. Costs scale with media length; set maxCostDollars to cap spend on long media.

NameTypeReqDescription
languagestringISO language hint, e.g. "en"
maxCostDollarsnumberAbort with a quote if the estimated cost exceeds this cap
urlstringyesMedia page URL, e.g. https://www.youtube.com/watch?v=...

No output schema declared.

No examples provided.