search_episodes

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

Search episodes by title + description.

Parameters

NameTypeRequiredDescription
termstringyes
langstringno
countnumberno
pagenumberno

Example call

Arguments

{
  "term": "artificial intelligence"
}

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_episodes","arguments":{"term":"artificial intelligence"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_episodes', {
  "term": "artificial intelligence"
});

More examples

{
  "term": "climate change",
  "lang": "de",
  "count": 15
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Search results for episodes 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.

Regenerated from source · build July 6, 2026