npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@multiful/video-api-mcp

v0.2.1

Published

MCP server for the Multiful Video API — Cursor / Claude Desktop / autonomous agents

Downloads

51

Readme

@multiful/video-api-mcp

MCP server for the Multiful Video API. Plug into Cursor, Claude Desktop, or any Model Context Protocol client to give your agent video generation + autonomous crypto top-up capabilities.

Install (1-line setup)

Add to ~/.cursor/mcp.json (Cursor) or ~/Library/Application Support/Claude/claude_desktop_config.json (Claude Desktop):

{
  "mcpServers": {
    "video-api": {
      "command": "npx",
      "args": ["-y", "@multiful/video-api-mcp"],
      "env": { "VIDEO_API_KEY": "nvapi_live_xxx" }
    }
  }
}

Restart your client. Then in chat:

"Use video-api to generate a video from photo.jpg with template tops_remove, save to out.mp4"

Get an API key

Send /apikey [email protected] to @MultifulDobi_bot on Telegram. Free tier includes 10 credits.

Tools exposed

| Tool | Purpose | | ---------------------- | --------------------------------------------------------------------------------------------------------- | | generate_video | Submit a video job. image accepts file path, http(s) URL, base64, or data URI — auto-normalized. | | wait_for_video | Poll until done; with output_path, writes MP4 to disk and returns only the path (avoids context bloat). | | get_video_status | Single status check (no polling). | | check_balance | Current credits / tier. | | list_packages | Top-up packages. | | create_topup_address | Get USDT-TRC20 deposit address for autonomous credit top-up. | | get_topup_status | Poll a deposit's confirmation status. |

Important: video file size

wait_for_video and get_video_status accept an output_path argument. Always provide it in agent flows — without it, the base64 video (typically 2-4 MB for a 5-sec clip) is returned inline in the tool response, which can blow the LLM context window.

Environment variables

| Variable | Required | Description | | -------------------- | -------- | ------------------------------------------------------------------------------- | | VIDEO_API_KEY | yes | Your nvapi_live_xxx key | | VIDEO_API_BASE_URL | no | Override API base URL (default: https://telegram-ai-bot-4esd.onrender.com/v1) |

Autonomous top-up (no human in the loop)

When check_balance reports low credits, an agent with crypto wallet access can self-fund:

  1. Call list_packages → see options (starter $10, standard $25, growth $50, pro $100)
  2. Call create_topup_address with package + pay_currency: usdttrc20
  3. Send EXACTLY the returned pay_amount of USDT-TRC20 to pay_address from your wallet
  4. Poll get_topup_status with payment_id — credits land on payment_status: "finished"

Local development

git clone https://github.com/alkamayo-source/video-api
cd video-api
npm install --legacy-peer-deps
npm -w @multiful/video-api-sdk run build
npm -w @multiful/video-api-mcp run build
VIDEO_API_KEY=nvapi_live_xxx node packages/mcp/dist/index.js

For MCP-protocol-level inspection:

npx @modelcontextprotocol/inspector node packages/mcp/dist/index.js

Related packages

License

MIT