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

@mindstone-engineering/mcp-server-runway

v0.3.1

Published

Runway ML MCP server for Model Context Protocol hosts — AI video, image, audio generation, custom voices, task management

Readme

@mindstone-engineering/mcp-server-runway

npm version License: FSL-1.1-MIT

Runway ML MCP server for Model Context Protocol hosts. Generate AI video, images, audio, speech, sound effects, and manage custom voices — all through a standardised MCP interface powered by Runway's generative AI models.

Requirements

  • Node.js 20+
  • npm

Quick Start

Install & build

cd <path-to-repo>/connectors/runway
npm install
npm run build

npx (once published)

npx -y @mindstone-engineering/mcp-server-runway

Local

node dist/index.js

Configuration

Environment variables

  • RUNWAYML_API_SECRET — Runway API key (from dev.runwayml.com)
  • MCP_HOST_BRIDGE_STATE — optional path to a host bridge state file used for credential management
  • MINDSTONE_REBEL_BRIDGE_STATE — backwards-compatible alias for MCP_HOST_BRIDGE_STATE
  • RUNWAY_REQUEST_TIMEOUT_MS — optional override (positive integer ms, max 30 min) for the outbound HTTP request timeout applied to Runway JSON API and host-bridge calls. Default: 60000 (60s). Raise this if you see TIMEOUT errors on slow submits; lower it if you want tighter bounds.
  • RUNWAY_UPLOAD_TIMEOUT_MS — optional override (positive integer ms, max 30 min) for the signed-URL upload leg of uploadEphemeral (large local-file uploads). Default: 600000 (10 min). Sized for up-to-200MB uploads on typical consumer uplinks (~5 Mbps) with comfortable headroom; raise for slower connections or lower for tighter bounds.

Host configuration examples

Claude Desktop / Cursor

{
  "mcpServers": {
    "Runway": {
      "command": "npx",
      "args": ["-y", "@mindstone-engineering/mcp-server-runway"],
      "env": {
        "RUNWAYML_API_SECRET": "your-api-key"
      }
    }
  }
}

Local development (no npm publish needed)

{
  "mcpServers": {
    "Runway": {
      "command": "node",
      "args": ["<path-to-repo>/connectors/runway/dist/index.js"],
      "env": {
        "RUNWAYML_API_SECRET": "your-api-key"
      }
    }
  }
}

Tools (22)

Configuration

  • configure_runway_api_key — Save your Runway API key

Video

  • generate_video_from_image — Animate a still image into a video
  • generate_video_from_text — Create a video from a text description
  • generate_video_from_video — Re-style or transform an existing video
  • character_performance — Animate a character with facial expressions and body movements (Act-Two)

Image

  • generate_image — Generate an image from text, optionally with reference images

Audio

  • generate_speech — Generate spoken audio from text using ElevenLabs voices
  • generate_sound_effect — Generate sound effects from a text description
  • swap_voice — Replace the voice in an audio or video file
  • dub_audio — Translate and dub audio into a different language
  • isolate_voice — Isolate voice from background audio

Voices

  • list_custom_voices — List all custom voices you've created
  • create_custom_voice — Create a custom voice from a text description
  • preview_voice — Generate a short audio preview of a voice
  • delete_custom_voice — Delete a custom voice

Task management

  • check_runway_task — Check the status of a generation task
  • wait_for_runway_task — Wait for a task to complete (auto-poll)
  • cancel_runway_task — Cancel or delete a task
  • download_runway_output — Download a Runway output to a local file
  • upload_media — Upload a local file to Runway's ephemeral storage

Account

  • get_runway_balance — Check credit balance, tier limits, and usage
  • query_credit_usage — Query detailed credit usage by model and day

Licence

FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. The software converts to MIT licence on 2030-04-08.