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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
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
| Field | Type | Description |
|---|---|---|
id | string | Episode ID |
title | string | Episode title |
description | string | Episode description |
audio | string | Audio URL |
image | string | Episode image URL |
pub_date_ms | number | Publication timestamp |
podcast | object | Parent 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.