canon_episode_search
Pack: canoncannon · Endpoint: https://gateway.pipeworx.io/canoncannon/mcp
Search the CanonCannon episode corpus — 10,000+ podcast episodes with the ideas, guests and books extracted from each. Filter by show, by publication date, or by free text. Requires a CanonCannon API key via _apiKey. Example: canon_episode_search({ query: “sleep apnea”, since: “2026-01-01” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free-text search over episode titles and extracted content. |
podcast | string | no | CanonCannon podcast slug, from canon_podcast_list. |
since | string | no | Only episodes published on or after this date, YYYY-MM-DD. |
limit | number | no | Episodes per page, 1-100. Default 25. |
cursor | string | no | Keyset cursor from a previous call’s next_cursor. |
Example call
Arguments
{
"query": "sleep apnea",
"since": "2026-01-01"
}
curl
curl -X POST https://gateway.pipeworx.io/canoncannon/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"canon_episode_search","arguments":{"query":"sleep apnea","since":"2026-01-01"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('canon_episode_search', {
"query": "sleep apnea",
"since": "2026-01-01"
});
More examples
{
"query": "sleep"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"canoncannon": {
"url": "https://gateway.pipeworx.io/canoncannon/mcp"
}
}
}
See Getting Started for client-specific install steps.