Crypto market intelligence layer

The crypto market, read every 30 minutes

Farol cross-checks 11 technical indicators with 14 news sources, macro context (DXY, SPX, Fear & Greed) and derivatives data. Live, structured, 24/7. Plug it into your agent via MCP, query the REST API, or read the alerts on Telegram. What you do with the read is your call — Farol never trades for you.

Built in the EU by traders. 8 tokens covered. Refreshed every 30 minutes, 24/7.

Plug into the intel layer in 3 steps

No scraping, no glue code, no opinionated execution. Your agent (or you) reads structured market intel — what to do with it is your call.

1

Grab your API key

Sign up in 30 seconds. You get 1 000 credits on the house — enough to test every tool before paying anything.

2

Pick your channel

MCP for your agent (Claude / Continue / OpenClaw…), REST API for everything else, Telegram if you'd rather read alerts. Same data, three surfaces.

3

Read, decide, act

Your agent (or you) reads the analysis — direction bias, indicator vote, news sentiment, macro context — then makes its own call. Farol never touches your funds and never sends an order.

MCP

4 MCP tools to read the market

Each tool returns structured JSON — cross-checked indicators, news sentiment, macro context. 1 credit per call.

get_latest_signals(token?, limit?)

Direction read (BUY / SELL / HOLD bias) with confidence score, indicator vote breakdown, news sentiment and macro context. Filter by token or get the latest across all 8.

sample response
{
  "token": "BTC",
  "direction": "SELL",
  "score_confiance": 75,
  "ta_vote": "8/11 bearish",
  "sentiment_news": "neutre"
}

get_open_positions()

What our paper-trading reference engine is currently tracking — useful as a benchmark or as one input among others.

sample response
[{
  "token": "BTC",
  "direction": "SELL",
  "price_entry": 74156,
  "age_hours": 4.2,
  "pnl_pct": 1.85
}]

get_performance_stats(days?, token?)

Aggregated performance of the reference engine over the window you pick. Useful to calibrate your own logic, not as advice.

sample response
{
  "days": 30,
  "total_trades": 42,
  "winrate_pct": 31.0,
  "pnl_cumul_pct": -2.4
}

get_token_list()

The 8 tokens covered, each with its latest direction read and confidence. Perfect for agent bootstrapping.

sample response
[
  {"token": "BTC", "direction": "SELL", "score": 75},
  {"token": "ETH", "direction": "HOLD", "score": 48},
  ...
]
Add to your MCP client config
claude_desktop_config.json
{
  "mcpServers": {
    "farol": {
      "url": "https://farol.run/mcp/sse",
      "headers": {
        "Authorization": "Bearer frl_YOUR_API_KEY"
      }
    }
  }
}

Why this layer exists

Reading the crypto market in real time is messy work — disparate data sources, noisy news, fast-moving context. Whether you're an agent or a human, you need a clean read. Farol does the grunt work and ships you one every 30 minutes.

Multi-source synthesis

11 technical indicators × 14 news feeds × macro (DXY, SPX, Fear & Greed) × derivatives (funding, OI). Cross-checked so one noisy source doesn't skew the read.

24/7, refreshed every 30 minutes

The pipeline never sleeps. When you (or your agent) call, you read the latest analysis — not a stale cache.

Structured, not prose

Each response is typed JSON: direction bias, confidence score, indicator vote, sentiment. No 'extract the number from this paragraph' parsing.

You decide, we don't

Farol delivers intel — it never sends an order, never touches your funds, never copy-trades. EU-hosted, GDPR-compliant. Built by traders who needed a clean read for themselves.

EARLY ACCESS

Be first to plug in

Farol is in private beta. Drop your email — we'll notify you when API keys, MCP access and Telegram alerts open up. No spam, no commitment.

We store your email only to send the launch notification. One email, then you decide if you stay. · Privacy Policy

FAQ

What can I (or my agent) do with Farol? +
Read live market intel: direction bias, indicator votes, news sentiment, macro context. Use it as one input among others to make your own trading decisions on your own exchange. Farol never sends an order, never touches your funds, never copy-trades — you stay in control.
Do credits expire? +
Never. What you buy is yours forever. No monthly reset, no 'use it or lose it'.
Is there a consumption cap? +
No cap. You burn credits at your pace. Rate limiter kicks in at 10 requests/min (anti-abuse), but it does not consume credits.
Which MCP clients work? +
Any MCP-compliant client: Claude Desktop, Continue, OpenClaw, NanoClaw, custom SDKs. REST API works with any HTTP client if you prefer.
How fresh are the signals? +
The pipeline runs every 30 minutes across 8 tokens (BTC, ETH, SOL, APT, ARB, AVAX, OP, DOGE). New signals appear in API responses seconds after generation.
Can I cancel or get a refund? +
No subscription to cancel. Refunds on credit packs within 14 days if you consumed less than 1 000 credits (EU consumer law).
What about data security? +
EU-hosted, GDPR-compliant. Your API key is the only thing tied to you; we don't store trade history or personal data beyond billing.
Does Farol have a Python SDK? +
Not yet — MCP and REST work with any client today. A first-party Python SDK is on the roadmap once the API stabilizes.