canon_podcast_get
Pack: canoncannon · Endpoint: https://gateway.pipeworx.io/canoncannon/mcp
One tracked show from CanonCannon, with its episode count and metadata. Get the slug from canon_podcast_list. Requires a CanonCannon API key via _apiKey. Example: canon_podcast_get({ slug: “peter-attia-drive” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | CanonCannon podcast slug, from canon_podcast_list. |
Example call
Arguments
{
"slug": "peter-attia-drive"
}
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_podcast_get","arguments":{"slug":"peter-attia-drive"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('canon_podcast_get', {
"slug": "peter-attia-drive"
});
More examples
{
"slug": "acquired"
}
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.