latest_episodes
Pack: fyyd · Endpoint: https://gateway.pipeworx.io/fyyd/mcp
Latest episodes for a podcast.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
podcast_id | number | yes | |
count | number | no | |
page | number | no |
Example call
Arguments
{
"podcast_id": 12345
}
curl
curl -X POST https://gateway.pipeworx.io/fyyd/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"latest_episodes","arguments":{"podcast_id":12345}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('latest_episodes', {
"podcast_id": 12345
});
More examples
{
"podcast_id": 67890,
"count": 5,
"page": 1
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Latest episodes for the specified podcast"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fyyd": {
"url": "https://gateway.pipeworx.io/fyyd/mcp"
}
}
}
See Getting Started for client-specific install steps.