Band Breakup Reason
The Band Breakup Reason API explains the demise of any band — real or invented. Reasons range from creative differences ("over the bassist's sourdough starter") to mundane ("a long argument about whether the snare should be live"). Includes the location of the final gig and the band members' postscripts.
Add to Your MCP Client
Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.
{
"mcpServers": {
"band-breakup-reason": {
"url": "https://api.stupidmcps.com/band-breakup-reason/mcp"
}
}
}
{
"mcpServers": {
"band-breakup-reason": {
"url": "https://api.stupidmcps.com/band-breakup-reason/mcp"
}
}
}
POST https://api.stupidmcps.com/band-breakup-reason/mcp
Add the snippet to your client's MCP config (typically claude_desktop_config.json for Claude Desktop, ~/.cursor/mcp.json for Cursor). Restart the client. The tools become available to your AI assistant.
No-code option: connect via Pipeworx — one click into Claude, ChatGPT, and friends.
Or Try It Directly — No MCP Client Required
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
band |
string |
Required | — | The band name. |
Examples
curl "https://api.stupidapis.com/band-breakup-reason/explain?band=The+Velvet+Toasters"
import requests
response = requests.get(
"https://api.stupidapis.com/band-breakup-reason/explain",
params={"band": "The Velvet Toasters"}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/band-breakup-reason/explain?band=The+Velvet+Toasters" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
band |
string |
Echoed back |
reason |
string |
Why they broke up |
final_gig |
string |
Where the last show was |
reunion_probability |
string |
Likelihood of return |
postscript |
string |
What the members did next |
documentary_in_development |
boolean |
Whether a doc is being made |
Example Response
{
"band": "The Velvet Toasters",
"reason": "Creative differences over the bassist's sourdough starter",
"final_gig": "a half-empty club in Cleveland",
"reunion_probability": "high (for money)",
"postscript": "the bassist now has a podcast",
"documentary_in_development": true
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidmcps.com/band-breakup-reason/mcp
POST https://api.stupidmcps.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.