canon_search

Pack: canoncannon · Endpoint: https://gateway.pipeworx.io/canoncannon/mcp

Search 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 speakers repeat it (excluding whoever originated it) and the bar in force. Use this to tell real cross-show consensus from one author on a book tour. Requires a CanonCannon API key via _apiKey. Example: canon_search({ query: “longevity” }) — q is matched as a PHRASE upstream, so prefer one or two words (“zone 2”, not “zone 2 training”).

Parameters

NameTypeRequiredDescription
querystringnoFree-text search over canon titles, claims and summaries, e.g. “creatine cognition”.
tierstringno”canon” = cleared the independent-spread bar; “observed” = extracted but not cleared. Omitting this returns both.
labelstringnoFilter to one label, e.g. “Canon”, “Curious”, “Novel”, or an editorial label.
limitnumbernoEntries per page, 1-100. Default 25.
cursorstringnoKeyset cursor from a previous call’s next_cursor. Not an offset.

Example call

Arguments

{
  "query": "longevity"
}

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_search","arguments":{"query":"longevity"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('canon_search', {
  "query": "longevity"
});

More examples

{
  "query": "zone 2"
}

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.

Regenerated from source · build September 15, 2026