search_podcasts
Pack: fyyd · Endpoint: https://gateway.pipeworx.io/fyyd/mcp
Search podcasts by title.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
term | string | yes | |
lang | string | no | ISO 639-1 language filter (e.g. en, de) |
count | number | no | 1-30 (default 10) |
page | number | no |
Example call
Arguments
{
"term": "technology"
}
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":"search_podcasts","arguments":{"term":"technology"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_podcasts', {
"term": "technology"
});
More examples
{
"term": "true crime",
"lang": "en",
"count": 20,
"page": 1
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Search results for podcasts matching the term"
}
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.