Developers

Your journal, on the Model Context Protocol

Plug LOGIT into Claude, Cursor, ChatGPT, or any MCP client — or pull your data over REST. Your data, your AI, your control.

Pro & Inside plans · 300 req/hour

Quickstart

1

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_.

2

Add LOGIT to your MCP client

Paste this into your client config (Claude Desktop, Cursor, etc.), with your key in the Authorization header:

json
{
  "mcpServers": {
    "logit": {
      "url": "https://your-logit-domain.com/api/mcp",
      "headers": {
        "Authorization": "Bearer lk_your_api_key_here"
      }
    }
  }
}
3

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_trades

List your trades from the journal.

params: pair, from, to, account_id, draft, limit, offset

get_journal

Get journal entries in a date range.

params: from, to, limit, offset

get_audits

Get 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:

GET/api/v1/tradespair, account_id, draft, from, to, limit, offset
GET/api/v1/journalfrom, to, limit, offset
GET/api/v1/auditsfrom, to, limit, offset
bash
curl "https://your-logit-domain.com/api/v1/trades?limit=20" \
  -H "Authorization: Bearer lk_your_api_key_here"

Security

Scoped to you

Every request runs against your account only — a key can never read another user's data.

Hashed at rest

Keys are stored as SHA-256 hashes; the raw value is shown once and never recoverable.

Instant revocation

Revoke any key from Settings — it stops working immediately.

Rate limited

300 requests/hour per key, with audit logging on every call.

Ready to talk to your data?