{
  "name": "Rate on Goat",
  "description": "Ask for album name + score, then POST to Goat Music /api/v1/quick-rate with your MCP token.",
  "steps": [
    { "type": "Ask for Input", "prompt": "Album name?", "variable": "Album" },
    { "type": "Ask for Input", "prompt": "Score (1-100)?", "variable": "Score" },
    {
      "type": "Get Contents of URL",
      "url": "https://goatmusic.app/api/v1/quick-rate",
      "method": "POST",
      "headers": { "Authorization": "Bearer TOKEN_PLACEHOLDER", "Content-Type": "application/json" },
      "body": { "album": "Album", "score": "Score" }
    },
    { "type": "Show Result", "input": "Result" }
  ],
  "note": "Replace TOKEN_PLACEHOLDER with your MCP token from https://goatmusic.app/account/mcp"
}
