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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
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
| Field | Type | Description |
|---|---|---|
id | string | Podcast ID |
title | string | Podcast title |
description | string | Podcast description |
image | string | Podcast image URL |
website | string | Podcast website |
language | string | Podcast language |
genre_ids | array | Genre IDs |
episodes | array | Recent 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.