top_podcasts

Pack: fyyd · Endpoint: https://gateway.pipeworx.io/fyyd/mcp

Return the most popular podcasts on fyyd, optionally filtered by category slug and language code, with up to 30 results per call.

Parameters

NameTypeRequiredDescription
categorystringnoCategory slug from categories
langstringno
countnumberno

Example call

Arguments

{
  "category": "news"
}

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":"top_podcasts","arguments":{"category":"news"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('top_podcasts', {
  "category": "news"
});

More examples

{
  "category": "technology",
  "lang": "en",
  "count": 25
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Current popular podcasts, optionally filtered by category"
}

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.

Regenerated from source · build July 6, 2026