Listed on the Official MCP Registry

Know the regime
before you trade.

Structural regime classifier for crypto markets. One GET request returns bounded, active, or unstable — with an exposure scalar to size your position.

Get Free API Key How It Works
100%
Bounded Accuracy
--
Predictions Graded
5
Assets Tracked
50/day
Free Calls
Live Data

Current Regime Snapshot

6-hour delayed feed. Get an API key for real-time access.

Loading...
Data loading...
Classification

Three regimes. One action each.

ReNoUn measures structural disorder in price action using 17 channels. It tells you whether conditions are safe, dynamic, or fragmenting — not which way price will move.

Bounded
action: "proceed"

Price expected within envelope. Structure is healthy. Trade at full position size.

100% (126+ graded)
Active
action: "reduce"

Dynamic conditions detected. Multiply your intended position by the exposure scalar (0.0-1.0).

Scale by exposure
Unstable
action: "avoid"

Structure is fragmenting. Skip this trade entirely. Wait for regime transition.

Risk flag
Integration

3 lines to safer trades.

Add a single risk check before your trade execution logic. Works with any language, any bot framework.

import requests

r = requests.get("https://api.harrisoncollab.com/v1/regime/live/BTCUSDT",
                  headers={"Authorization": "Bearer rn_agent_YOUR_KEY"})
regime = r.json()

if regime["action"] == "avoid":
    skip_trade()                                    # unstable — stay out
elif regime["action"] == "reduce":
    execute(size=intended * regime["exposure"])     # active — scale down
else:
    execute(size=intended)                          # bounded — full size
MCP Native

On the Official MCP Registry.

Any MCP client can discover and connect to ReNoUn natively. Zero integration code needed.

registry.modelcontextprotocol.io

io.github.98lukehall/renoun

Streamable HTTP transport. 9 tools exposed including renoun_finance_analyze, regime_live, regime_batch, and 6 conversation analysis tools.

View on Registry
Claude Desktop / MCP Client Config:
{
  "mcpServers": {
    "renoun": {
      "type": "streamable-http",
      "url": "https://api.harrisoncollab.com/mcp",
      "headers": {
        "Authorization": "Bearer rn_agent_YOUR_KEY"
      }
    }
  }
}
Track Record

Every prediction graded. Publicly.

No other crypto signal service publishes every call with a timestamp and a pass/fail grade. Most won't even tell you their hit rate. We grade every prediction against the 1-hour actual price outcome — no cherry-picking, no hiding losses.

Bounded Regimes
100%
126+ of 126+ correct

When ReNoUn says it's safe to trade, it's right every time.

Active Regimes
--
grading in progress

Active regimes recommend position scaling via the exposure scalar.

Unstable Regimes
N/A
Risk flag, not a prediction

Unstable is a warning to stay out. It's not graded as a directional call.

Live signal feed on X · Full dashboard (6h delayed)
Pricing

Free to start. Pay as you grow.

Free Tier

$0
50 calls/day, no credit card
  • All regime endpoints (live, batch, custom OHLCV)
  • Stability estimates (halflife, urgency)
  • MCP transport access
  • Provision via API — no signup form
Get Free Key
Also Available

Conversation structural analysis.

The same 17-channel engine also analyzes AI conversations — detecting stuck loops, breakthroughs, and convergence patterns.

9 MCP Tools

Full structural analysis, health checks, session comparison, longitudinal tracking, real-time steering, alignment classification, and adaptive recovery analysis.

renoun_analyze renoun_health_check renoun_compare renoun_steer renoun_agent_monitor renoun_alignment_classify renoun_recovery_analyze renoun_pattern_query renoun_finance_analyze

Get started in 10 seconds.

Provision a free API key. No signup form, no credit card. Just a POST request.

Provision Free Key
curl -X POST https://api.harrisoncollab.com/v1/keys/provision \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com", "agent_name": "my-bot"}'