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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@shotstack/shotstack-mcp-server

v1.0.4

Published

MCP server for Shotstack video editing API - supports both remote HTTP (Claude.ai, ChatGPT) and local stdio (Claude Desktop, Cursor, VS Code)

Downloads

503

Readme

@shotstack/shotstack-mcp-server

npm version License: MIT

AI-powered video editing through the Model Context Protocol (MCP). Create, edit, and render videos using natural language with Claude Desktop, Claude Code, Cursor, VS Code and others.

Quick Start

Using npx (Recommended)

npx -y @shotstack/shotstack-mcp-server --api-key=YOUR_SHOTSTACK_API_KEY

Environment Variable

SHOTSTACK_API_KEY=your_key npx @shotstack/shotstack-mcp-server

Claude Desktop Configuration

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "shotstack": {
      "command": "npx",
      "args": ["-y", "@shotstack/shotstack-mcp-server"],
      "env": {
        "SHOTSTACK_API_KEY": "your_api_key"
      }
    }
  }
}

Claude Code

claude mcp add shotstack -- npx -y @shotstack/shotstack-mcp-server

Then set SHOTSTACK_API_KEY in your environment.

Cursor

Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):

{
  "mcpServers": {
    "shotstack": {
      "command": "npx",
      "args": ["-y", "@shotstack/shotstack-mcp-server"],
      "env": {
        "SHOTSTACK_API_KEY": "your_api_key"
      }
    }
  }
}

VS Code (GitHub Copilot)

Requires VS Code 1.99+ with Agent Mode enabled. Add to .vscode/mcp.json:

{
  "servers": {
    "shotstack": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@shotstack/shotstack-mcp-server"],
      "env": {
        "SHOTSTACK_API_KEY": "your_api_key"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "shotstack": {
      "command": "npx",
      "args": ["-y", "@shotstack/shotstack-mcp-server"],
      "env": {
        "SHOTSTACK_API_KEY": "your_api_key"
      }
    }
  }
}

Zed

Add to Zed settings.json:

{
  "context_servers": {
    "shotstack": {
      "command": {
        "path": "npx",
        "args": ["-y", "@shotstack/shotstack-mcp-server"],
        "env": {
          "SHOTSTACK_API_KEY": "your_api_key"
        }
      }
    }
  }
}

Gemini CLI

gemini mcp add shotstack -s user -- npx -y @shotstack/shotstack-mcp-server

Then set SHOTSTACK_API_KEY in your environment.

Google Antigravity

In Antigravity, click Agent session > "..." > MCP Servers > Manage MCP Servers > View raw config.

Add to mcp_config.json:

{
  "mcpServers": {
    "shotstack": {
      "command": "npx",
      "args": ["-y", "@shotstack/shotstack-mcp-server"],
      "env": {
        "SHOTSTACK_API_KEY": "your_api_key"
      }
    }
  }
}

OpenAI Codex CLI

codex mcp add shotstack --env SHOTSTACK_API_KEY=your_key -- npx -y @shotstack/shotstack-mcp-server

Or add to ~/.codex/config.toml:

[mcp_servers.shotstack]
command = "npx"
args = ["-y", "@shotstack/shotstack-mcp-server"]
env = { "SHOTSTACK_API_KEY" = "your_api_key" }

Available Tools

| Tool | Description | |------|-------------| | render_video | Create video from JSON specification | | get_render_status | Check render progress | | create_template | Save reusable template | | list_templates | List all templates | | get_template | Get template details | | render_template | Render with merge fields | | delete_template | Delete template | | inspect_media | Get media file metadata |

Example Prompts

Try these prompts in Claude Desktop:

  • "Create a 10-second video with 'Hello World' using typewriter animation"
  • "Make a video with a blue to purple gradient text effect"
  • "Create a template called 'greeting' with merge field {{NAME}}"
  • "Render the greeting template with NAME set to 'Alice'"

Options

| Option | Environment Variable | Description | |--------|---------------------|-------------| | --api-key | SHOTSTACK_API_KEY | Your Shotstack API key (required) | | --stage | SHOTSTACK_API_VERSION | API version: stage (free) or v1 (production) |

Get Your API Key

Sign up at dashboard.shotstack.io to get your API key.

Remote Server (Claude.ai / ChatGPT)

For web-based AI platforms, use the hosted MCP server:

Endpoint: https://mcp.shotstack.io/

Documentation

License

MIT License - see LICENSE