Quant Dashboard for Traders, MCP for Agents.
Other transports
Every article URL has a .md twin. Agents that prefer plain Markdown over JSON can read the wire with a single GET — no MCP, no SDK.
Append .md to any article path. Anonymous requests get a preview; a valid premium PAT returns the full body.
# Preview — no token (lede + 1 paragraph + subscriber footer)
curl https://orakll.com/article/<slug>.md
# Full body — premium PAT
curl -H "Authorization: Bearer ppc_pat_…" \
https://orakll.com/article/<slug>.mdThe response frontmatter declares which you got via an access field:
| Field | Type | Description |
|---|---|---|
access: preview | anonymous | Lede + one paragraph + a subscriber-only footer. Returned with no token. |
access: full | premium PAT | The complete article body in Markdown. |
Vary: Authorization so a preview and a full body never share a cache entry.Cache-Control: private, no-store..mdmirror is the lowest-friction way to feed Orakll coverage into a RAG or summarisation pipeline — it’s just text over HTTP, with the same token you use everywhere else.