AgentHubAgentHub

Runway ML

MCP ServerMCP Registry官方收录

io.github.mindstone/mcp-server-runway · v0.3.2

Runway ML MCP server: AI video, image, audio, voice generation, and task management

概览

Runway ML 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp-server-runway": {
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-runway"
      ],
      "env": {
        "RUNWAYML_API_SECRET": "<RUNWAYML_API_SECRET>"
      }
    }
  }
}

环境变量

RUNWAYML_API_SECRET必填secret

Runway API key (from dev.runwayml.com)

RUNWAY_REQUEST_TIMEOUT_MS可选

Outbound HTTP request timeout in milliseconds (max 1800000)

RUNWAY_UPLOAD_TIMEOUT_MS可选

Signed-URL upload timeout for large local files in milliseconds

RUNWAY_ALLOWED_ROOT可选

Sandbox root for local-file inputs to upload tools. Defaults to os.tmpdir().

RUNWAY_DOWNLOAD_ROOT可选

Sandbox root for downloaded outputs. Defaults to ~/Downloads/runway-mcp.

相关资源

统一 Manifest

{
  "id": "io.github.mindstone/mcp-server-runway",
  "type": "mcp-server",
  "version": "0.3.2",
  "displayName": "Runway ML",
  "description": "Runway ML MCP server: AI video, image, audio, voice generation, and task management",
  "repository": {
    "url": "https://github.com/mindstone/mcp-servers",
    "source": "github",
    "subfolder": "connectors/runway"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@mindstone/mcp-server-runway",
        "version": "0.3.2",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "RUNWAYML_API_SECRET",
            "description": "Runway API key (from dev.runwayml.com)",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "RUNWAY_REQUEST_TIMEOUT_MS",
            "description": "Outbound HTTP request timeout in milliseconds (max 1800000)"
          },
          {
            "name": "RUNWAY_UPLOAD_TIMEOUT_MS",
            "description": "Signed-URL upload timeout for large local files in milliseconds"
          },
          {
            "name": "RUNWAY_ALLOWED_ROOT",
            "description": "Sandbox root for local-file inputs to upload tools. Defaults to os.tmpdir()."
          },
          {
            "name": "RUNWAY_DOWNLOAD_ROOT",
            "description": "Sandbox root for downloaded outputs. Defaults to ~/Downloads/runway-mcp."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.mindstone/mcp-server-runway",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.mindstone%2Fmcp-server-runway/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Runway ML — MCP Server 安装与配置 · AgentHub