Server data from the Official MCP Registry
Search 90M+ tracks, artists, and releases: metadata, ISRC/ISWC, and cross-platform IDs for AI.
Search 90M+ tracks, artists, and releases: metadata, ISRC/ISWC, and cross-platform IDs for AI.
Well-architected MCP server with excellent security practices. Authentication is properly enforced via environment variables, all operations are read-only API calls with appropriate input validation via Zod schemas, and the codebase is small and auditable. No sensitive data is logged, credentials are handled correctly, and permissions align precisely with the server's purpose of querying a music metadata API. Supply chain analysis found 3 known vulnerabilities in dependencies (2 critical, 0 high severity). Package verification found 1 issue.
5 files analyzed · 6 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: SONOVAULT_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-rekordcloud-sonovault": {
"env": {
"SONOVAULT_API_KEY": "your-sonovault-api-key-here"
},
"args": [
"-y",
"sonovault-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
MCP server for the SonoVault music metadata API. Gives Claude, Cursor, and any MCP client search across 90M+ tracks, artists, labels, and releases, with full metadata per result: genre, label, release dates, artist credits, ISRC and ISWC codes, and cross-platform IDs (Spotify, Apple Music, Tidal, Beatport, Discogs, MusicBrainz, YouTube).
Ask your assistant things like:
You need a SonoVault API key. The free tier is 1,000 requests/month, no credit card: get a key.
Add to claude_desktop_config.json:
{
"mcpServers": {
"sonovault": {
"command": "npx",
"args": ["-y", "sonovault-mcp"],
"env": { "SONOVAULT_API_KEY": "svk_live_..." }
}
}
}
claude mcp add sonovault -e SONOVAULT_API_KEY=svk_live_... -- npx -y sonovault-mcp
Add to ~/.cursor/mcp.json (or .cursor/mcp.json in your project):
{
"mcpServers": {
"sonovault": {
"command": "npx",
"args": ["-y", "sonovault-mcp"],
"env": { "SONOVAULT_API_KEY": "svk_live_..." }
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"sonovault": {
"command": "npx",
"args": ["-y", "sonovault-mcp"],
"env": { "SONOVAULT_API_KEY": "svk_live_..." }
}
}
}
Add the same mcpServers block as Claude Desktop to ~/.codeium/windsurf/mcp_config.json.
Any client that speaks MCP over stdio works. Command: npx -y sonovault-mcp with the SONOVAULT_API_KEY environment variable set.
| Tool | What it does |
|---|---|
search_tracks | Fuzzy search by artist + title. Returns ISRC, genre, label, release date. |
lookup_isrc | Exact recording lookup by ISRC. |
get_track | Fetch a track by SonoVault ID. |
get_work_codes | Recording to composition: the ISWC(s) behind a recording. |
get_recordings_of_work | Composition to recordings: every recording of an ISWC. |
get_platform_links | One track's ID and deep link on all 7 platforms, from any ID or ISRC. |
resolve_tracks | Bulk resolve up to 100 track names, ISRCs, or platform IDs. |
search_artists, get_artist_releases | Artist search and discography. |
search_labels, get_label_releases | Label search and catalog. |
search_releases, get_release | Release search and tracklists with ISRCs. |
list_genres | The canonical genre hierarchy. |
browse_tracks | Discover by label, artist, genre, or year (paid tier). |
All tools are read-only. Most work on the free tier; browse_tracks needs a paid plan.
Paste a play log with just artist and title, and ask: "Resolve these to ISRC, album, and label, and give me a table I can map onto a SoundExchange Report of Use." The assistant calls resolve_tracks once per 100 lines and returns the identifiers collecting societies match on. Works the same for PPL, Sena, GVL, and Re:Sound reporting.
"Here are 50 tracks from my rekordbox export. Find the canonical version of each, flag duplicates that share an ISRC, and tag each with its genre." The assistant combines resolve_tracks with the genre fields on each result.
"I have ISRCs from my distributor. Which musical works do they belong to, and what other recordings exist of each work?" The assistant chains get_work_codes and get_recordings_of_work. Useful for publishing administration and cover/version research.
"Is this Beatport exclusive on Spotify yet? Beatport ID 6014288." One get_platform_links call answers it, with deep links per platform.
"Summarize what Anjunabeats released in the last six months, grouped by subgenre." The assistant pages through get_label_releases and pulls genre from the tracklists.
Yes. A free SonoVault key includes 1,000 requests/month with no credit card. Every tool except browse_tracks works on it.
Title, artist credits (with primary/remixer flags), ISRC, duration, genre and subgenre, and per-release album title, label, and release date. ISWC work codes come from the dedicated work-code tools.
No. The public SonoVault API deliberately excludes audio features like BPM, key, and energy. No audio previews or artwork either.
Aggregated and deduplicated from MusicBrainz, Discogs, Spotify, Apple Music, Tidal, and Beatport, with ISWC links from The MLC. Details: sonovault.now/data-sources.
Single-platform APIs return their own IDs only. SonoVault resolves one recording to its IDs on all seven supported platforms, keyed by ISRC, and adds identifiers (ISRC, ISWC) that platform APIs don't expose. Comparison: sonovault.now/compare/spotify-api.
No. The server runs locally over stdio and sends your key only to api.sonovault.now as a request header. The code is small and auditable: src/server.ts.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.