action listennotes_get_trending_searches { label: "Fetch trending search terms" description: "Fetch up to 10 most recent trending search terms on the Listen Notes platform." provider: listennotes method: GET path: "/trending_searches" encoding: json output: { type: "object" required: ["terms"] properties: { terms: { type: "array" description: "Trending search terms" items: { type: "string" } } } } }