episode

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

Fetch full details for a single podcast episode by Listen Notes id. Returns title, description, audio URL, duration, publish date, and parent podcast info.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "6f7c8e9a0b1c2d3e4f5a6b7c8d9e0f1a"
}

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":"episode","arguments":{"id":"6f7c8e9a0b1c2d3e4f5a6b7c8d9e0f1a"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('episode', {
  "id": "6f7c8e9a0b1c2d3e4f5a6b7c8d9e0f1a"
});

Response shape

FieldTypeDescription
idstringEpisode ID
titlestringEpisode title
descriptionstringEpisode description
audiostringAudio URL
imagestringEpisode image URL
pub_date_msnumberPublication timestamp
podcastobjectParent podcast info
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Episode ID"
    },
    "title": {
      "type": "string",
      "description": "Episode title"
    },
    "description": {
      "type": "string",
      "description": "Episode description"
    },
    "audio": {
      "type": "string",
      "description": "Audio URL"
    },
    "image": {
      "type": "string",
      "description": "Episode image URL"
    },
    "pub_date_ms": {
      "type": "number",
      "description": "Publication timestamp"
    },
    "podcast": {
      "type": "object",
      "description": "Parent podcast info",
      "properties": {
        "id": {
          "type": "string"
        },
        "title": {
          "type": "string"
        }
      }
    }
  }
}

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 7, 2026