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

autoeditor-mcp

v1.4.0

Published

Atlas MCP Server — gives Claude Code, OpenAI, and other AI agents access to Atlas video retention scoring, editing, and NLE export

Readme

AutoEditor MCP Server

Model Context Protocol server that gives AI agents (Claude Code, OpenAI, Cursor, etc.) access to AutoEditor's video intelligence.

Quick Start

Install

npm install -g autoeditor-mcp

With Claude Code

Add to your Claude Code config (~/.config/claude-code/mcp.json):

{
  "mcpServers": {
    "autoeditor": {
      "command": "npx",
      "args": ["autoeditor-mcp"],
      "env": {
        "ATLAS_API_KEY": "your-b2b-api-key",
        "ATLAS_API_BASE": "https://autoeditor.app"
      }
    }
  }
}

With OpenAI / Custom Agents

Run as a stdio process:

ATLAS_API_KEY=your-key autoeditor-mcp

Tools

score_video_retention

Score a video's viewer retention probability before it goes live. Returns overall score (0-100), per-segment breakdown, predicted retention curve, and top issues.

get_retention_advice

Get concrete, timestamped recommendations for improving a video's retention. Each recommendation includes severity, specific fix, and expected retention lift.

create_edit

Create an Atlas auto-edit job from a video URL. Returns a job ID immediately — the video is processed asynchronously. The agent should tell the user "I've started processing your video" and then poll with wait_for_edit or get_job_status.

wait_for_edit

Poll an edit job until it completes or fails. Checks every 5 seconds and returns the final result with the output video URL. Use this after create_edit to wait for the result.

create_edit_and_wait

Create an edit job AND wait for it to complete in one call. Combines create_edit + wait_for_edit for convenience.

get_job_status

Check the status of an editing job. Returns progress, ETA, human-readable status message, and when complete — the output video URL.

export_nle_timeline

Export an NLE-compatible timeline (FCPXML, EDL, or Premiere XML) from a completed edit. Import into Final Cut Pro, DaVinci Resolve, or Premiere Pro to refine AI cuts.

batch_score_videos

Score multiple videos in a single request. Useful for content teams evaluating a batch before publishing.

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | ATLAS_API_KEY | Yes | — | B2B API key | | ATLAS_API_BASE | No | https://autoeditor.app | API base URL |

Use Cases

  • Media companies: Score videos before publishing to catch retention killers
  • Ad agencies: Evaluate ad creative for viewer engagement before spending on distribution
  • Movie studios: Score trailer cuts for audience retention probability
  • Content teams: Batch-score a week's content queue in one call
  • AI agents: Let Claude/OpenAI agents create edits, check status, and export timelines programmatically