Install
openclaw skills install crate-music-researchAI-powered music research with 92+ tools across 17 sources — MusicBrainz, Bandcamp, Discogs, Genius, Last.fm, Wikipedia, and more. Influence tracing, track verification, playlist building, and publishing.
openclaw skills install crate-music-researchYou have access to Crate's music research tools via MCP. These tools connect to 17 real music databases and 26 publications. Use them to answer music questions with verified, cited data.
Add Crate as an MCP server in your configuration:
{
"mcpServers": {
"crate": {
"command": "npx",
"args": ["-y", "crate-cli", "--mcp-server"],
"env": {
"ANTHROPIC_API_KEY": "${ANTHROPIC_API_KEY}"
}
}
}
}
This exposes all active tools over stdio. Additional API keys unlock more servers (see Optional API Keys below).
Cross-reference multiple sources for comprehensive artist profiles:
musicbrainz_search_artist — canonical artist ID, discography, relationshipsgenius_get_artist — bio, aliases, social links, annotationslastfm_get_artist_info — listening stats, similar artists, tagsdiscogs_search_artist — label history, pressings, catalog numbersbandcamp_search — independent releases, merch, direct-support linkswikipedia_search — biographical context, career timelineAlways start with MusicBrainz for the canonical ID, then fan out to other sources.
Discover how artists connect through published music criticism:
influence_trace_influence to search 26 publications for co-mentionsinfluencecache_get_path for cached paths (instant BFS results)influencecache_get_neighbors to explore an artist's immediate connectionsAlways cite the publication and review when presenting influence connections. Every claim needs a URL.
CRITICAL: Never invent track names. Always verify tracks exist before presenting them.
bandcamp_get_artist_tracks — primary source for independent artistsmusicbrainz_search_recording — primary source for mainstream releasesyoutube_search — fallback verification sourcediscogs_get_release — pressing details, labels, catalog numbers, condition notesdiscogs_get_master_release — all versions/pressings of an albumdiscogs_get_marketplace_stats — current market prices and trendscollection_add_record / collection_search — manage the user's personal collectionplaylist_create — create a new playlistplaylist_add_track — add verified tracks with source URLsplaylist_export_m3u — export to M3U format for external playersShare research as public web pages or blog posts:
telegraph_create_page — instant shareable page, no account neededtelegraph_create_index — create a living index of all published pagestumblr_create_post — post to the user's Tumblr blog with markdown formattingtumblr_tag_post — auto-tag posts with artist names and genres| Server | Tools | Env Required | Description |
|---|---|---|---|
| MusicBrainz | 6 | — | Artist/release/recording metadata |
| Bandcamp | 7 | — | Independent music, artist tracks |
| Wikipedia | 3 | — | Biographical context |
| YouTube | 6 | — | Video search, audio playback |
| Radio | varies | — | Internet radio streaming |
| News | varies | — | Music news via RSS |
| Collection | 5 | — | Local record collection (SQLite) |
| Playlist | varies | — | Playlist management (SQLite) |
| Influence Cache | 8 | — | Local influence graph (SQLite) |
| Telegraph | 5 | — | Anonymous publishing |
| Last.fm | 7 | LASTFM_API_KEY | Scrobbles, similar artists |
| Genius | 8 | GENIUS_ACCESS_TOKEN | Lyrics, annotations |
| Discogs | 9 | DISCOGS_KEY, DISCOGS_SECRET | Vinyl catalog, marketplace |
| Web Search | 4 | TAVILY_API_KEY or EXA_API_KEY | Publication search |
| Influence | 3 | TAVILY_API_KEY or EXA_API_KEY | Live influence tracing |
| Tumblr | 5 | TUMBLR_CONSUMER_KEY, TUMBLR_CONSUMER_SECRET | Blog publishing |
| Memory | 3 | MEM0_API_KEY | Persistent user preferences |
Set these environment variables to unlock additional servers:
LASTFM_API_KEY — Last.fm listening stats and similar artists
GENIUS_ACCESS_TOKEN — Lyrics, annotations, and artist bios
DISCOGS_KEY — Vinyl catalog, labels, and marketplace
DISCOGS_SECRET — Required with DISCOGS_KEY
TAVILY_API_KEY — Web search across 26 music publications
EXA_API_KEY — Neural semantic search for influence tracing
YOUTUBE_API_KEY — Improved YouTube search results
TUMBLR_CONSUMER_KEY — Publish research to your Tumblr blog
TUMBLR_CONSUMER_SECRET — Required with TUMBLR_CONSUMER_KEY
MEM0_API_KEY — Persistent memory across sessions
Only ANTHROPIC_API_KEY is required. All other servers are optional.