action listennotes_get_languages { label: "Fetch a list of supported languages for podcasts" description: "Get a list of languages that are supported in Listen Notes database. You can use the language string as query parameter in `GET /search`.\n" provider: listennotes method: GET path: "/languages" encoding: json output: { type: "object" required: ["languages"] properties: { languages: { type: "array" items: { type: "string" } } } } }