canon_episode_get
Pack: canoncannon · Endpoint: https://gateway.pipeworx.io/canoncannon/mcp
One podcast episode from CanonCannon with everything extracted from it — the ideas it raised, its guests, and the books mentioned. Get the slug from canon_episode_search. Requires a CanonCannon API key via _apiKey. Example: canon_episode_get({ slug: “pa-392-sleep-apnea” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | CanonCannon episode slug, from canon_episode_search. |
Example call
Arguments
{
"slug": "pa-392-sleep-apnea"
}
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_get","arguments":{"slug":"pa-392-sleep-apnea"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('canon_episode_get', {
"slug": "pa-392-sleep-apnea"
});
More examples
{
"slug": "think-fast-talk-smart-323-priya-parker"
}
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.