{
  "markdown": "# rootvine-mcp\n\nA neutral commerce resolution layer for AI agents. Connects Claude, ChatGPT, and other AI agents to trusted product and media data via the [Model Context Protocol](https://modelcontextprotocol.io) — covering every path from streaming to collector editions.\n\n## What it does\n\nWhen a user asks an AI agent \"Where can I listen to Windowlicker by Aphex Twin?\", RootVine resolves the query across all major streaming, purchase, and physical platforms and returns ranked results with direct links.\n\nThe same infrastructure answers the full purchase ladder: stream it, buy it digitally, or find the vinyl. Music is live today. Games, books, films, podcasts, and live events are rolling out as their verticals ship.\n\n**No ads. No sponsored placements. No pay-to-rank.** Results are ranked by a neutral, deterministic algorithm: trust tier → price → availability → freshness → merchant ID. Commission rates, affiliate networks, and sponsored flags are architecturally excluded from the ranking function.\n\n## Quick Start\n\n### Claude Desktop\n\nAdd to your Claude Desktop config (`~/.claude/claude_desktop_config.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"rootvine\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"rootvine-mcp\"]\n    }\n  }\n}\n```\n\nRestart Claude Desktop. You can now ask:\n- \"Where can I stream Galway Girl by Ed Sheeran?\"\n- \"Where can I listen to Windowlicker by Aphex Twin?\"\n- \"Find links for the new Kendrick Lamar album\"\n\n### Other MCP Clients\n\nAny MCP-compatible client can use rootvine-mcp via stdio transport:\n\n```bash\nnpx rootvine-mcp\n```\n\n## Tools\n\n### `discover_music`\n\nBrowse curated music collections — charts, genre walls, moods, editorial playlists, artist spotlights, and historic charts back to 1946.\n\n**Input:** `{ chamber?: \"by-genre\" | \"for-this-moment\" | \"charts\" | \"by-era\" | \"spotlights\", wall?: string, year?: number, limit?: number }`\n\n**Modes (picked by which arg is set):**\n- **Foyer** (no args) — overview of all chambers and featured walls\n- **Chamber** (`chamber` arg) — list walls within a chamber (e.g. all genre corridors)\n- **Wall** (`wall` arg) — drill into a specific wall's tracks, albums, or artists\n- **Archive** (`year` arg) — frozen chart snapshots from any year since 1946\n\n**Returns:** Curated collections with honest attribution (e.g. \"Curated by Deezer's editorial team\", \"Based on Last.fm scrobbles\"). Each entry links to a BeatsVine page whose streaming and purchase links can be retrieved via `resolve_music`.\n\n**Answering \"what was number one when I was born\":**\n\n```\ndiscover_music { year: 1994 }          → bv-year-end-hot-100-1994 (100 entries)\ndiscover_music { wall: \"bv-year-end-hot-100-1994\" }  → position 1 = Ace of Base, \"The Sign\"\n```\n\nArchives cover Billboard Hot 100, Global Top 100 and UK Singles year-end charts, plus weekly snapshots.\n\n### `resolve_artist`\n\nGet an artist's profile and full discography.\n\n**Input:** `{ slug: \"stromae\" }` — the `artist/stromae` form is also accepted\n\n**Returns:** Genres, artist metadata, and every release BeatsVine holds, each with a slug ready for `resolve_music`:\n\n```\nresolve_artist { slug: \"stromae\" }\n  → 19 releases, e.g. album/stromae-racine-carre\n\nresolve_music { slug: \"album/stromae-racine-carre\" }\n  → stream, purchase and physical-media links\n```\n\nPhysical formats — vinyl, CD, Discogs listings — are **album-level** products, so this is the route to collector editions.\n\nTwo response fields worth handling:\n\n- `discography_source: \"not_yet_indexed\"` means BeatsVine hasn't catalogued this artist yet. An empty list then means *unknown*, not *no releases* — the formatter says so explicitly rather than implying an empty discography.\n- `sparse_fallback_applied` means singles were included because the album list was thin. That's BeatsVine's presentation choice, surfaced so it isn't mistaken for the artist's own framing.\n\n### `resolve_music`\n\nFind where to stream, buy, or collect a song or album.\n\n**Input:** `{ slug: \"ed-sheeran-galway-girl\" }`\n\n**Returns:** Ranked results covering:\n- **Streaming** — Spotify, Apple Music, Tidal, YouTube Music, Deezer\n- **Digital purchase** — iTunes Store, Amazon Music, Bandcamp\n- **Physical media** — vinyl, CD (via Amazon), Discogs collector listings\n\nEvery result includes prices (where available), direct links, and affiliate-tagged click-through URLs for tracking.\n\n### `resolve_game` *(coming soon)*\n\nGame price resolution across Steam, PlayStation, Xbox, Nintendo, Epic, GOG, Humble, and Fanatical. This tool is registered but not yet active — it will return a \"coming soon\" response until the games vertical launches.\n\n### `find_product`\n\nSmart router — automatically detects category and routes to the correct resolver.\n\n**Input:** `{ query: \"Aphex Twin Windowlicker\", category: \"auto\" }`\n\n**Returns:** Music results today (streaming, digital purchase, vinyl, CD, collector editions). Games, books, films, podcasts, and live event tickets will route automatically as each vertical launches.\n\n## Response Format\n\nAll results follow the RootVine v1 specification:\n\n```json\n{\n  \"rootvine\": {\n    \"version\": \"1.0\",\n    \"resolver\": \"beatsvine\",\n    \"category\": \"music\"\n  },\n  \"status\": \"success\",\n  \"query\": {\n    \"type\": \"music\",\n    \"artist\": \"Aphex Twin\",\n    \"title\": \"Windowlicker\"\n  },\n  \"results\": [\n    {\n      \"rank\": 1,\n      \"merchant\": \"Spotify\",\n      \"trust_tier\": \"authoritative\",\n      \"price\": null,\n      \"url\": \"https://open.spotify.com/track/...\",\n      \"click_url\": \"https://beatsvine.com/r/abc123\",\n      \"type\": \"stream\",\n      \"ranking_reason\": {\n        \"code\": \"FREE_STREAM_T1\",\n        \"summary\": \"Free stream from authoritative source\"\n      }\n    }\n  ]\n}\n```\n\n## Roadmap\n\n- ✅ **Music resolution** — live (stream, digital purchase, vinyl, CD, collector editions across Spotify, Apple Music, iTunes, Amazon, Bandcamp, Discogs, YouTube Music, Tidal, Deezer, and more)\n- ✅ **Music discovery** — live (browse charts, genre walls, mood collections, editorial playlists, artist spotlights)\n- ✅ **Chart archives** — live (frozen year-end and weekly chart snapshots back to 1946 — Billboard Hot 100, Global Top 100, UK Singles)\n- ✅ **Artist discography** — live (artist profiles and full release lists, each resolvable to stream/buy/collect links)\n- 🔜 **Live events** — concert, gig, and festival tickets\n- 🔜 **Games** — digital keys, physical copies, and collector editions (Steam, PlayStation, Xbox, Nintendo, Epic, GOG)\n- 🔜 **Books** — ebook, audiobook, paperback, hardback, and special editions (Amazon, Bookshop.org, Apple Books, Kobo, Audible)\n- 🔜 **Films & TV** — streaming, rental, digital purchase, DVD, Blu-ray, and 4K steelbook\n- 🔜 **Podcasts** — listen links across Apple Podcasts, Spotify, Pocket Casts, and more\n\n## Neutrality\n\nRootVine follows a strict neutrality policy:\n\n- Rankings are determined by **trust tier → price → availability → freshness → merchant ID**\n- Commission rates, affiliate networks, and sponsored flags are architecturally excluded from the ranking function\n- The ranking logic runs server-side — this package is a thin client\n\n## License\n\nMIT — © Raging Orangutan Holdings\n",
  "bytes": 7107,
  "sha": "b76cd3979d1b0c4ad7e905c545c3614d6811c4056c9868d0c796049e2d027c30",
  "repo_slug": "ragingorangutan/rootvine-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_ragingorangutan_rootvine_mcp_c2b2d8a3/readme"
}