best_podcasts

Pack: listen-notes · Endpoint: https://gateway.pipeworx.io/listen-notes/mcp

Fetch the Listen Notes curated list of top podcasts, optionally filtered by genre_id, region, or sort. Returns title, publisher, image URL, and Listen Notes id per podcast.

Parameters

NameTypeRequiredDescription
genre_idnumberno
regionstringno
sortstringno
pagenumberno

Example call

Arguments

{
  "genre_id": 144,
  "region": "us"
}

curl

curl -X POST https://gateway.pipeworx.io/listen-notes/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"best_podcasts","arguments":{"genre_id":144,"region":"us"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('best_podcasts', {
  "genre_id": 144,
  "region": "us"
});

More examples

{
  "page": 2
}

Response shape

FieldTypeDescription
podcastsarrayTop podcasts
pagenumberCurrent page
totalnumberTotal podcasts
Full JSON Schema
{
  "type": "object",
  "properties": {
    "podcasts": {
      "type": "array",
      "description": "Top podcasts",
      "items": {
        "type": "object"
      }
    },
    "page": {
      "type": "number",
      "description": "Current page"
    },
    "total": {
      "type": "number",
      "description": "Total podcasts"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "listen-notes": {
      "url": "https://gateway.pipeworx.io/listen-notes/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026