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 / Memory

get_entity()

Key

A versioned entity dossier: summary, key facts, open questions — plus drill-down ids for the L2 reads behind each line.

get_entity(entity_id, as_of)DOSSIER

Callable over MCP as get_entity(entity_id, as_of). REST mirror GET /v1/entities Planned — alpha is MCP-only

Why your agent calls it

The L2 dossier when one entity is the subject: summary, key facts, open questions, and ids to drill further. The open-questions block is often the most useful part — it tells the agent what the workspace knows it doesn't know.

What it returns
EVIDENCE CARDSUMMARYKEY FACTSOPEN QUESTIONSDRILL-DOWN IDS
get_entity() · The versioned dossier for one entity.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.get_entity( entity_id="ent_discount_tier", as_of="2026-06-11T17:00:00Z", )
Parameters
ParamTypeDescription
entity_idREQUIREDstringThe entity to load.
as_oftimestampDossier as of this moment. Default now.
Example response
get_entity()JSON · ILLUSTRATIVE
{ "entity": "discount_tier", "summary": "15% closing discount, live since 2025-09", "key_facts": ["fct_2231"], "open_questions": ["effect on enterprise win rate unmeasured"], "drill_down": ["mem_0871", "mem_0912"] }
Related — Memory