CanonCannon
liveMediaWhat actually recurs across 162 tracked podcasts — ideas from 10,500+ episodes, each carrying the count of INDEPENDENT shows and speakers that repeat it, excluding whoever originated it. Tells real cross-show consensus from one author on a book tour.
Tools
canon_searchSearch CanonCannon for ideas that recur across podcasts — claims extracted from 10,000+ episodes of 162 tracked shows, each with the MEASUREMENT behind its status: how many independent podcasts and sp
No parameters required.
Try it
canon_getThe full CanonCannon entry for one idea — the claim, the evidence behind it, the nuance and gaps, related entries and books — alongside its measurement (independent podcast count, independent speaker
No parameters required.
Try it
canon_episode_searchSearch 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
No parameters required.
Try it
canon_episode_getOne 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 ke
No parameters required.
Try it
canon_person_getWhat one person has actually said across podcasts, per CanonCannon — their appearances by show and the ideas attributed to them, drawn from 3,800+ people in the corpus. Answers "does this person keep
No parameters required.
Try it
canon_podcast_listEvery podcast CanonCannon tracks, with its episode count — the roster that forms the denominator of the canon bar (an idea needs ceil(5%) of these shows to clear it). Requires a CanonCannon API key vi
No parameters required.
Try it
canon_podcast_getOne 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: "the-drive"
No parameters required.
Try it
canon_corpus_statsCanonCannon corpus size and the canon bar CURRENTLY in force — entry, episode, idea and person counts, the tracked-podcast count, and the independent-podcast threshold an idea must clear. Call this to
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/canoncannon/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/canoncannon/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"canon_search","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("canon_search", {});// Or ask in plain English:
const answer = await px.ask("what actually recurs across 162 tracked podcasts — ideas from 10,500+ episodes, each carrying the count of independent shows and speakers that repeat it, excluding whoever originated it");