canon_get
Pack: canoncannon · Endpoint: https://gateway.pipeworx.io/canoncannon/mcp
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 count, the bar in force, and when it was last verified). Get the slug from canon_search. Requires a CanonCannon API key via _apiKey. Example: canon_get({ slug: “circadian-rhythm-health-foundation” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | CanonCannon canon slug, from canon_search. |
Example call
Arguments
{
"slug": "circadian-rhythm-health-foundation"
}
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_get","arguments":{"slug":"circadian-rhythm-health-foundation"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('canon_get', {
"slug": "circadian-rhythm-health-foundation"
});
More examples
{
"slug": "exercise-as-foundation"
}
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.