CanonCannon

liveMedia

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. Tells real cross-show consensus from one author on a book tour.

8tools
0msauth
free tier50 calls/day

Tools

canon_get

The 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_get

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 ke

No parameters required.

Try it
canon_person_get

What 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_list

Every 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_get

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: "the-drive"

No parameters required.

Try it
canon_corpus_stats

CanonCannon 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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/canoncannon/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("canon_search", {});
ask_pipeworx
// 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");