get_podcast
Pack: fyyd · Endpoint: https://gateway.pipeworx.io/fyyd/mcp
Podcast metadata + recent episodes.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
podcast_id | number | yes |
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":"get_podcast","arguments":{"podcast_id":12345}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_podcast', {
"podcast_id": 12345
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Podcast metadata and recent episodes"
}
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.