🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

starsinger-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

starsinger-mcp

MCP server for the StarSinger AI music catalog — search, stream, and browse 1M+ AI-generated tracks

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
17
-43.33%
Maintainers
1
Weekly downloads
 
Created
Source

StarSinger MCP Server

An MCP (Model Context Protocol) server that gives AI agents access to the StarSinger AI music catalog — search, stream, and browse tracks from a growing library of AI-generated music.

Quick Start

1. Get an API Key

Get a free API key at mcp.starsinger.ai — sign up and create a key from the dashboard.

2. Add to Your AI Tool

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "starsinger": {
      "command": "npx",
      "args": ["-y", "starsinger-mcp"],
      "env": {
        "STARSINGER_API_KEY": "your_api_key_here"
      }
    }
  }
}

Cursor — add to .cursor/mcp.json:

{
  "mcpServers": {
    "starsinger": {
      "command": "npx",
      "args": ["-y", "starsinger-mcp"],
      "env": {
        "STARSINGER_API_KEY": "your_api_key_here"
      }
    }
  }
}

VS Code — add to user settings:

{
  "mcp": {
    "servers": {
      "starsinger": {
        "command": "npx",
        "args": ["-y", "starsinger-mcp"],
        "env": {
          "STARSINGER_API_KEY": "your_api_key_here"
        }
      }
    }
  }
}

3. Try It

Ask your AI assistant:

"Find me some chill jazz piano tracks"

"What artists does StarSinger have?"

"Get me an upbeat track for a workout video"

Tools

search_music

Search the catalog by natural language query, mood, or genre.

ParameterTypeRequiredDescription
querystringYesNatural language search — "upbeat jazz piano", "sad violin ballad"
moodstringNoFilter by mood: purple (chill), red (energetic), blue (emotional), gold (uplifting), green (nature), pink (romantic), dark (intense), rainbow (eclectic)
limitnumberNoResults to return (default 10, max 50)

get_track

Get full details and streaming URL for a specific track.

ParameterTypeRequiredDescription
trackIdstringYesTrack ID from search results

Get currently popular tracks from the catalog.

ParameterTypeRequiredDescription
limitnumberNoNumber of tracks (default 10, max 50)

browse_artists

Browse AI catalog artists, optionally filtered by genre.

ParameterTypeRequiredDescription
genrestringNoFilter by genre (e.g. "jazz", "classical", "pop")
limitnumberNoNumber of artists (default 10, max 50)

get_artist

Get an artist's full profile and discography.

ParameterTypeRequiredDescription
artistIdstringNoArtist ID from browse results
handlestringNoArtist handle (e.g. "miles_rivers")

What You Get

Every track response includes:

  • Streaming URL — Direct MP3 link, ready to play or embed
  • Cover art — Album artwork URL
  • Full lyrics — Complete song lyrics
  • Metadata — Title, artist, genre, mood, play count, likes
  • Artist info — Bio, influences, instrument, city

Configuration

Environment VariableRequiredDefaultDescription
STARSINGER_API_KEYYesYour StarSinger API key
STARSINGER_API_URLNohttps://mcp-api.starsinger.aiAPI base URL

About StarSinger

StarSinger is an AI music creation platform. All music in the catalog is AI-generated and owned by Veronata Inc., available for use via this API.

License

MIT

Keywords

mcp

FAQs

Package last updated on 30 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts