trackmcp
Back to directory
starsinger-ai

starsinger-mcp

View on GitHub

MCP server for the StarSinger AI music catalog — search, stream, and browse AI-generated tracks via Model Context Protocol

1 stars JavaScriptOthers Updated Mar 30, 2026
aiai-musicaudiomcpmcp-servermodel-context-protocolmusic-apistreaming

Documentation

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`:

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

Cursor — add to `.cursor/mcp.json`:

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

VS Code — add to user settings:

json
{
  "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
`query`stringYesNatural language search — "upbeat jazz piano", "sad violin ballad"
`mood`stringNoFilter by mood: `purple` (chill), `red` (energetic), `blue` (emotional), `gold` (uplifting), `green` (nature), `pink` (romantic), `dark` (intense), `rainbow` (eclectic)
`limit`numberNoResults to return (default 10, max 50)

`get_track`

Get full details and streaming URL for a specific track.

ParameterTypeRequiredDescription
`trackId`stringYesTrack ID from search results

Get currently popular tracks from the catalog.

ParameterTypeRequiredDescription
`limit`numberNoNumber of tracks (default 10, max 50)

`browse_artists`

Browse AI catalog artists, optionally filtered by genre.

ParameterTypeRequiredDescription
`genre`stringNoFilter by genre (e.g. "jazz", "classical", "pop")
`limit`numberNoNumber of artists (default 10, max 50)

`get_artist`

Get an artist's full profile and discography.

ParameterTypeRequiredDescription
`artistId`stringNoArtist ID from browse results
`handle`stringNoArtist 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_KEY`YesYour StarSinger API key
`STARSINGER_API_URL`No`https://mcp-api.starsinger.ai`API 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

Frequently asked questions

What is starsinger-mcp?

starsinger-mcp is MCP server for the StarSinger AI music catalog — search, stream, and browse AI-generated tracks via Model Context Protocol

How do I install starsinger-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is starsinger-mcp open source?

Yes — it is hosted on GitHub at https://github.com/starsinger-ai/starsinger-mcp and has 1 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP