Alpha MCPAPI reference · v1

The MCP your agents call.

Tritemporal memory that cannot lie about the past, a governed causal graph, knock-on simulation, and a decision ledger — the engine behind every Cascadian answer, at machine speed.

MCPPOSTGRESGOVERNED
Tools / Governance

capabilities()

Public

Every analytical method, marked implemented, partial, interface_only, or planned. Interface-only methods return their contract and nothing else — the system never fakes a number it cannot compute.

capabilities()CAPABILITY MATRIX

Callable over MCP as capabilities(). REST mirror GET /v1/capabilities Planned — alpha is MCP-only

Why your agent calls it

Call it before you trust anything else. Every analytical method, marked implemented, partial, interface_only, or planned — so an agent (or a buyer) knows exactly which numbers are real. Interface-only methods return their contract, never a faked result.

What it returns
implemented14partial3interface_only4planned6
capabilities() · The honesty endpoint — what is real vs planned.ILLUSTRATIVE
Call it from an agent

Over MCP, your agent invokes it on its own when the moment calls for it — just describe the situation. A Python SDK for headless runtimes is planned; this is what the call will look like.

agent · python sdkSDK · PLANNED — ALPHA IS MCP-ONLY
from cascadian import Cascadian cx = Cascadian(api_key=os.environ["CASCADIAN_API_KEY"]) result = cx.capabilities()
Parameters

None. The call is workspace-scoped by the key that makes it.

Example response
capabilities()JSON · ILLUSTRATIVE
{ "estimators": { "diff_means": "implemented", "ols_adjusted": "implemented", "logistic": "implemented", "ipw": "implemented", "aipw": "interface_only", "did": "interface_only", "its": "interface_only" }, "attribution": "partial", "rule": "interface_only methods return their contract — never a faked number" }
Related — Governance