AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Harmix Music Search

skill-harmix-harmix-skills-harmix-music-search · by Harmix

Search for music tracks using natural language prompts or video content via the Harmix AI API. Use when the user asks to find music, search for songs, discover tracks, needs music recommendations based on mood/genre/tempo/scene, or wants to find music for a video, video soundtrack, or music that matches video content.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-harmix-harmix-skills-harmix-music-search

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-harmix-harmix-skills-harmix-music-search)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Harmix Music Search? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Harmix AI Music Search

Harmix is an AI-powered music search platform tailored for production music, TV and movie productions, record labels, and publishers. It enables accurate music discovery from large catalogs using natural language and visual content analysis.

Features Available in This Skill

  • Prompt Search: Search music using free text descriptions (mood, genre, tempo, scene, etc.)
  • Video Search: Upload video frames to find music that matches the visual mood and content

Documentation

  • API Documentation: https://docs.harmix.ai/
  • Web Platform: https://web.harmix.ai/

Authentication

All requests require the api_key header:

api_key: v8mWxAGAFTEFcU9NYGGhDWWbzYXS5e

Output Format for Users

When presenting search results to users, display each track with:

  1. Title: The track title
  2. Artist(s): The artist name(s)
  3. URL: Link to the track on its streaming service (Spotify, Apple Music, Deezer, etc.)

Extract these from the response:

  • Title: metadata.track_title
  • Artists: metadata.artists
  • URL: metadata.extra_parameters.url

Example output format:

1. "Energy Boost" by Electric Dreams
   https://open.spotify.com/track/abc123

2. "Morning Run" by Fitness Beats
   https://music.apple.com/track/xyz789

Search Methods

1. Prompt-Based Search

Search with a natural language description of the music you want.

curl -X POST "https://api.harmix.ai/search?limit=5" \
  -H "api_key: v8mWxAGAFTEFcU9NYGGhDWWbzYXS5e" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "upbeat electronic music for a workout"}'

For full documentation, see [references/prompt-search.md](references/prompt-search.md).

2. Video-Based Search

Find music that matches video content by analyzing visual frames.

Requirements: ffmpeg must be installed.

Quick steps:

  1. Extract 5 JPEG frames (226x226) from video at equal intervals (must use .jpeg extension)
  2. Upload frames to /upload endpoint
  3. Search using the returned upload_id
# Upload frames (must use .jpeg extension)
curl -X POST "https://api.harmix.ai/upload" \
  -H "api_key: v8mWxAGAFTEFcU9NYGGhDWWbzYXS5e" \
  -F "type=manual-video" \
  -F "source=@frame1.jpeg" \
  -F "source=@frame2.jpeg" \
  -F "source=@frame3.jpeg" \
  -F "source=@frame4.jpeg" \
  -F "source=@frame5.jpeg"

# Search with upload_id from response
curl -X POST "https://api.harmix.ai/search?limit=5" \
  -H "api_key: v8mWxAGAFTEFcU9NYGGhDWWbzYXS5e" \
  -H "Content-Type: application/json" \
  -d '{"video_reference": {"upload_id": "YOUR_UPLOAD_ID"}}'

For full documentation, see [references/video-search.md](references/video-search.md).

Response Format

Both methods return tracks with title, artists, and streaming URL:

{
  "tracks_number": 5,
  "tracks": [
    {
      "metadata": {
        "track_title": "Track Name",
        "artists": ["Artist Name"],
        "extra_parameters": {
          "url": "https://open.spotify.com/track/abc123"
        }
      }
    }
  ]
}

API Limits

The provided API key has usage limits. If you receive a 403 error with code 4005, the limit has been reached.

When limit is reached:

  1. Request your own API key by contacting support@harmix.ai
  2. Or use the web platform directly at https://web.harmix.ai/

Scripts

  • [scripts/videosearch.py](scripts/videosearch.py) - CLI tool for video-based music search

Resources

  • [Prompt Search Reference](references/prompt-search.md)
  • [Video Search Reference](references/video-search.md)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.