Quant Dashboard for Traders, MCP for Agents.
Introduction
Every gated Orakll request authenticates with a personal access token, passed in the Authorization header with the Bearer prefix.
Tokens are issued from your account and are premium-gated — you mint them after subscribing.
Include your token in the Authorization header with the Bearer prefix on every request:
Authorization: Bearer ppc_pat_…The format is ppc_pat_ followed by 43 base64url characters (51 characters in total). Tokens are user-scoped and inherit your tier.
The header in action — fetching an article’s full Markdown body, a premium-gated call. With a valid premium token you get the full body (access: full); the same request without it returns only a preview. Swap in any article slug:
curl -H "Authorization: Bearer $ORAKLL_TOKEN" \
"https://orakll.com/article/<slug>.md"The same Authorization: Bearer header authenticates the hosted MCP and the premium REST surfaces — one token, every transport.
ORAKLL_TOKEN rather than hard-coding it.export ORAKLL_TOKEN="ppc_pat_…"Manage tokens at /account/tokens: revoke a token to kill it immediately, and generate a replacement.