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

lemolabs-spotter-mcp

v0.1.0

Published

AI-assisted sound design spotting — MCP server for Claude Code

Readme

SPOTTER MCP Server

AI sound design spotting as an MCP tool for Claude Code.

Analyzes any video → generates a complete cue sheet → optionally generates or searches SFX audio → exports DAW-synchronized WAV stems.

Install

git clone <repo>
cd spotter/mcp-server
npm install
npm run build

Add to Claude Code

Edit ~/.claude/settings.json:

{
  "mcpServers": {
    "spotter": {
      "command": "node",
      "args": ["/absolute/path/to/spotter/mcp-server/dist/index.js"]
    }
  }
}

Restart Claude Code. Verify with /mcp — you should see spotter listed.

Configure providers

ElevenLabs (SFX generation)

configure_provider({ provider: "elevenlabs", api_key: "YOUR_KEY" })

Freesound (SFX search)

Get a free API key at freesound.org/apiv2:

configure_provider({ provider: "freesound", api_key: "YOUR_KEY" })

Custom REST provider

Any API that accepts POST { prompt, duration_seconds } and returns audio:

configure_provider({
  provider: "my_sfx_api",
  api_key: "YOUR_KEY",
  endpoint: "https://api.example.com/v1/generate"
})

Config stored in ~/.spotter/config.json.

Tools

| Tool | Description | |------|-------------| | analyze_video | Extract frames → AI analysis → cue sheet (analysis.json) | | generate_sfx | Generate audio from text prompt via ElevenLabs or custom provider | | search_sfx | Search Freesound for existing recordings | | export_stems | Export DAW-ready WAV stems + CSV cue sheet | | list_providers | Show configured providers and their status | | configure_provider | Add/update API keys and endpoints |

Typical workflow

# 1. Analyze a video
analyze_video({ video_path: "/path/to/scene.mp4", criterio: "dark thriller, minimal music, emphasis on environment" })

# 2. Generate SFX for specific cues (returns audio files in project/media/)
generate_sfx({ prompt: "heavy rain on metal roof, distant thunder", duration_seconds: 8, output_dir: "/path/to/project/media" })

# 3. Export DAW stems (pads each clip to full video length with silence before/after)
export_stems({ project_dir: "/path/to/project", video_duration: 120.5 })

The exported WAVs drop directly into any DAW (Reaper, Logic, Pro Tools, etc.) at the correct timecode — no manual alignment needed.

Project structure

~/Documents/Proyectos SPOTTER/<timestamp>_<name>/
├── analysis.json       # Full cue sheet (cues array + narrative)
├── criterio.txt        # Director's intent (if provided)
├── frames/             # Extracted JPGs used for analysis
├── media/              # Generated/downloaded audio files
└── export/
    ├── cue_sheet.csv   # Human-readable cue sheet
    └── AMB_cue_001_*.wav  # DAW-synchronized stems

Use without the Electron app

SPOTTER MCP works standalone — you don't need the Electron app. The Electron app is for step-by-step manual control; the MCP server is for fully automated pipeline use from Claude Code.