Search the Bide & Musique collection of forgotten French songs. Records, lyrics, no API key.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Bide & Musique is a French web radio and the collection of records it plays, catalogued by hand by the volunteer association that runs it. Its subject is the forgotten song: the flop, the novelty record, the television theme, the single nobody reissued. A record's page carries the performer, the writers and composers, the year, the label and its catalogue reference, the sleeve, the duration, the station's own chart placings, and the words when a listener transcribed them.
This server connects a chat client to that collection. You can search it along one axis at a time, by performer, title, writer, lyrics, label or year; read one record in full; read what the site holds about an artist with their discography; draw a record at random; and see what has just been catalogued. It needs no API key and no account.
One-click install
Claude Code
Claude Desktop, Cursor, and any client using the standard config format
Node 24 or later is required, and no environment variable has to be set.
-i keeps stdin open, which is where the protocol travels, and -t is left out
because a TTY rewrites the stream. The container needs outbound HTTPS to
www.bide-et-musique.com, and nothing else: no volume, no port, no credential.
Download mcp-bideetmusique-2.0.1.mcpb from
the latest release
and open it. A client that supports MCP bundles installs it on its own, with no
npm and no configuration file to edit. The bundle carries its dependencies, so
nothing is fetched at install time.
The ordinary path runs from a search to a record: a row carries a song_id, and
get_song reads it.
| Tool | What it does |
|---|---|
search_songs | Searches the collection along one axis at a time. |
get_song | Reads one record in full, words included. |
get_artist | Reads an artist and the records the collection holds of theirs. |
get_random_song | Draws a record nobody chose. |
list_new_songs | Reads what the collection has just catalogued. |
search_songsSearches along one axis, which has to be named: each asks a different question, and an answer on one says nothing about the others. A name that returns nothing as a performer may still be a title.
| Argument | Type | Required | What it does |
|---|---|---|---|
query | string, up to 200 characters | yes | What to look for on that axis. |
search_type | performer, title, writer, lyrics, label or year | yes | The axis to search along. |
page | integer, 1 to 200, default 1 | no | Which page of rows. |
limit | integer, 1 to 50, default 20 | no | Rows to serve. |
search_type | Finds |
|---|---|
performer | the artist credited on the record |
title | the name of the song |
writer | who wrote or composed it |
lyrics | the words sung in it |
label | the label it came out on |
year | the year printed on it |
The year axis takes one four-digit year and nothing else: the site drops any
other word there instead of filtering on it. Several keywords are combined with
AND and each is matched inside words, so every extra word narrows the search, and
a quoted phrase returns nothing whatever the site's own form offers.
In return: rows carrying song_id, which get_song takes; title; url;
and the artist. total_matches is the number the site prints, counting
matching songs across every page, so it exceeds the rows of one page.
page_served is the page the site actually served, since it answers a page past
the last one with the last page and no error: read it rather than assuming the
page asked for. page_count and has_more_pages are null where the site
printed neither.
get_songReads one record in full.
| Argument | Type | Required | What it does |
|---|---|---|---|
song_id | string, up to 20 characters | yes | The id a search row carries. |
include_lyrics | boolean, default true | no | Carry the transcribed words when the page has them. |
In return: title, artist, credited_performer, year, writers,
duration with the text exactly as the record prints it and its precision,
labels with one entry per label, catalogue_reference, presentation,
sleeve_credits, image_url, added_on as an ISO date, the station's chart
placings, favourites and comments. The title, the artist and the duration are
always stated; the rest is absent on some records and comes back null rather
than guessed, and a counter the page prints nothing for is unknown rather than
zero. lyrics.available says whether the page carries a transcription, and
lyrics.text holds the words with the transcriber who wrote them down.
get_artistReads what the collection holds about one artist, with the records it has of theirs.
| Argument | Type | Required | What it does |
|---|---|---|---|
artist_id | string, up to 20 characters | yes | The artist id a record carries. |
limit | integer, 1 to 200, default 100 | no | Records of theirs to serve. |
In return: name, aliases, surname, first_name, nationality,
birth_date, presentation, see_also, links and photo_url, each null or
empty where the page states nothing. discography carries their records, each
with its song_id for get_song, its title, url, year and how often the
station programmed it. discography_count counts the records served and
songs_on_page the records the page held, so a truncated discography is visible.
get_random_songDraws a record nobody chose, over the ids the site serves. It is for browsing the collection when no particular song is being asked about.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-bideetmusique)<a href="https://allmcps.com/mcp/mcp-bideetmusique"><img src="https://allmcps.com/api/badge/mcp-bideetmusique?style=directory" alt="MCP Bideetmusique on AllMCPs" /></a>