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

vibe-daw-mcp

v1.0.0

Published

Model Context Protocol (MCP) server for vibe-daw Strudel code editor integration

Readme

vibe-daw MCP Server

Model Context Protocol (MCP) server for vibe-daw Strudel code editor integration with Claude Code and Claude Desktop.

Installation

cd vibe-daw-mcp
npm install

Configuration

1. Generate an MCP Token

  1. Go to vibe-daw settings page: http://localhost:3000/settings/mcp
  2. Click "Generate New Token"
  3. Give your token a name (e.g., "Claude Code")
  4. Copy the generated token (starts with mcp_)

2. Configure Claude Code

Add to your Claude Code MCP settings:

{
  "mcpServers": {
    "vibe-daw": {
      "command": "node",
      "args": ["/path/to/vibe-daw/vibe-daw-mcp/index.js"],
      "env": {
        "VIBE_DAW_API_URL": "http://localhost:3000",
        "VIBE_DAW_MCP_TOKEN": "mcp_YOUR_TOKEN_HERE"
      }
    }
  }
}

Available Tools

Track Management

  • list_tracks - List all available Strudel tracks/songs
  • read_track - Read a specific track with line numbers
  • create_track - Create a new track

Track Editing

  • replace_lines - Replace specific lines in a track
  • insert_lines - Insert new code at a specific line
  • delete_lines - Delete specific lines
  • append_track - Add code to the end of a track
  • prepend_track - Add code to the beginning of a track

Usage Examples

List all tracks

Use the list_tracks tool

Read a track

Use read_track with songId="uuid-here"

Edit a track

Use replace_lines with:
- songId="uuid-here"
- startLine=5
- endLine=7  
- content="// New Strudel code here"

Development

Run in development mode with auto-reload:

npm run dev

Troubleshooting

  1. Authentication fails: Make sure your MCP token is valid and not revoked
  2. Connection refused: Ensure vibe-daw is running on the correct port
  3. Token not found: Check that the token exists in the database and hasn't been revoked