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

@playvideo/playvideo-mcp

v1.0.0

Published

MCP server for PlayVideo API - enables AI assistants to manage videos

Readme

PlayVideo MCP Server

Model Context Protocol (MCP) server for PlayVideo API. Enables AI assistants like Claude to manage your videos directly.

What is MCP?

Model Context Protocol is an open protocol that allows AI assistants to interact with external tools and data sources. This MCP server lets Claude (and other MCP-compatible assistants) manage your PlayVideo videos.

Features

  • Collections - List/create/delete collections
  • Videos - List videos, get details, delete
  • Webhooks - Create, test, update, and manage webhooks
  • Embed settings - Read/update player settings and sign embeds
  • API keys - List/create/delete API keys
  • Account - Read/update account settings
  • Usage - Monitor plan limits and quotas
  • Upload instructions - Get curl/SDK commands for uploading

Installation

For Claude Desktop

  1. Install the MCP server globally:
npm install -g @playvideo/playvideo-mcp

Or run without installing:

npx @playvideo/playvideo-mcp
  1. Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
  "mcpServers": {
    "playvideo": {
      "command": "playvideo-mcp",
      "env": {
        "PLAYVIDEO_API_KEY": "play_live_your_api_key"
      }
    }
  }
}
  1. Restart Claude Desktop

For Development

cd mcp
npm install
npm run build

Run locally:

PLAYVIDEO_API_KEY=play_live_xxx npm start

Usage Examples

Once configured, you can ask Claude things like:

  • "List my video collections"
  • "Create a new collection called 'Tutorials'"
  • "Show me all completed videos"
  • "Create a webhook for video.completed"
  • "Update embed settings to autoplay and muted"
  • "Generate a signed embed for video xyz123"
  • "Create a new API key for production"
  • "What's my current usage?"
  • "Delete the video with ID xyz123"
  • "How do I upload a video to the 'demos' collection?"

Available Tools

| Tool | Description | |------|-------------| | list_collections | List all video collections | | create_collection | Create a new collection | | delete_collection | Delete a collection and its videos | | list_videos | List videos (filter by collection/status) | | get_video | Get video details and URLs | | delete_video | Delete a video | | get_upload_instructions | Get upload commands | | list_webhooks | List webhooks and available events | | get_webhook | Get webhook details and deliveries | | create_webhook | Create a webhook (returns secret once) | | update_webhook | Update a webhook | | test_webhook | Send test webhook event | | delete_webhook | Delete a webhook | | get_embed_settings | Get embed player settings | | update_embed_settings | Update embed player settings | | sign_embed | Generate signed embed URL/code | | list_api_keys | List API keys | | create_api_key | Create API key (returns key once) | | delete_api_key | Delete API key | | get_account | Get account settings | | update_account | Update account settings | | get_usage | Get usage stats and limits |

Resources

The server also provides documentation resources:

  • playvideo://docs/quickstart - Quick start guide
  • playvideo://docs/api - API reference
  • playvideo://docs/sdks - SDK installation and examples
  • playvideo://docs/webhooks - Webhook setup and verification

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | PLAYVIDEO_API_KEY | Yes | Your PlayVideo API key | | PLAYVIDEO_URL | No | API URL (default: https://api.playvideo.dev) |

Self-Hosted PlayVideo

If you're running a self-hosted PlayVideo instance:

{
  "mcpServers": {
    "playvideo": {
      "command": "playvideo-mcp",
      "env": {
        "PLAYVIDEO_API_KEY": "your-key",
        "PLAYVIDEO_URL": "https://video.yourdomain.com"
      }
    }
  }
}

Security

  • API keys are never logged or exposed in responses
  • All API calls go directly to PlayVideo servers
  • No data is stored locally

License

MIT