Quickstart
Generate an API key
API keys are available on Pro and Inside. Open and generate one. Copy it immediately — it's shown only once. Keys start with lk_.
Add LOGIT to your MCP client
Paste this into your client config (Claude Desktop, Cursor, etc.), with your key in the Authorization header:
{
"mcpServers": {
"logit": {
"url": "https://your-logit-domain.com/api/mcp",
"headers": {
"Authorization": "Bearer lk_your_api_key_here"
}
}
}
}Ask your AI about your trading
Restart the client and try: "summarize my GBP/USD trades from last week" or "which setup made me the most pips this month?"
MCP tools
list_tradesList your trades from the journal.
params: pair, from, to, account_id, draft, limit, offset
get_journalGet journal entries in a date range.
params: from, to, limit, offset
get_auditsGet AI audit history.
params: from, to, limit, offset
More tools (workouts, goals, computed stats, semantic journal search) are on the public roadmap, prioritized by what users ask for most.
REST API (no MCP needed)
For Zapier, n8n, scripts, or plain ChatGPT — the same data over REST, authed with the same key. Three read-only endpoints:
curl "https://your-logit-domain.com/api/v1/trades?limit=20" \
-H "Authorization: Bearer lk_your_api_key_here"Security
Every request runs against your account only — a key can never read another user's data.
Keys are stored as SHA-256 hashes; the raw value is shown once and never recoverable.
Revoke any key from Settings — it stops working immediately.
300 requests/hour per key, with audit logging on every call.