podcast

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

Fetch full details for a single podcast by Listen Notes id. Returns title, description, publisher, language, total episodes, latest episode date, and image URL.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "4d3fd60d59324c0e9b9c14861d5e9b15"
}

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":"podcast","arguments":{"id":"4d3fd60d59324c0e9b9c14861d5e9b15"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('podcast', {
  "id": "4d3fd60d59324c0e9b9c14861d5e9b15"
});

Response shape

FieldTypeDescription
idstringPodcast ID
titlestringPodcast title
descriptionstringPodcast description
imagestringPodcast image URL
websitestringPodcast website
languagestringPodcast language
genre_idsarrayGenre IDs
episodesarrayRecent episodes
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Podcast ID"
    },
    "title": {
      "type": "string",
      "description": "Podcast title"
    },
    "description": {
      "type": "string",
      "description": "Podcast description"
    },
    "image": {
      "type": "string",
      "description": "Podcast image URL"
    },
    "website": {
      "type": "string",
      "description": "Podcast website"
    },
    "language": {
      "type": "string",
      "description": "Podcast language"
    },
    "genre_ids": {
      "type": "array",
      "description": "Genre IDs",
      "items": {
        "type": "number"
      }
    },
    "episodes": {
      "type": "array",
      "description": "Recent episodes",
      "items": {
        "type": "object"
      }
    }
  }
}

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