{"name":"io.github.RaYYeR220/regimen","slug":"rayyer220-regimen","title":null,"description":"Tells you whether a trading strategy's edge is distinguishable from luck.","url":"https://mcp.market/server/rayyer220-regimen","rating":null,"grade":"B","score":81,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":23,"stars":0,"forks":0,"downloads_week":null,"last_push_at":"2026-09-19T14:07:22.000Z","license":"MIT"},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-21T01:05:32.400Z","last_ok_at":"2026-09-21T01:05:32.400Z","latency_ms":185},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/RaYYeR220/regimen","website":"https://regimen-nu.vercel.app","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://regimen-nu.vercel.app/mcp"}],"packages":[],"tools":[{"name":"regimen_describe_factors","description":"List the market-condition factors Regimen slices performance by, with units, the upstream operation each is read from, and how it is bucketed. Call this when you need to know which factor keys exist or how to explain a bucket to a user. Takes no arguments, reaches no network, never changes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"regimen_evaluate_track_record","description":"Answer whether a trading strategy’s measured performance is distinguishable from luck. Returns the Probabilistic Sharpe Ratio (the probability the true Sharpe beats a benchmark, corrected for sample length, skew and fat tails), a bootstrap confidence interval, and the Minimum Track Record Length — how long the record would have to run before the claim could be made at all. Use this whenever someone quotes a Sharpe ratio, a win rate or a return and you need to know whether the number means anything. It will frequently say the evidence is too thin; that is the intended answer, not a failure.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"selector":{"type":"object","properties":{"source":{"type":"string","enum":["olaxbt-nexus","inline"],"description":"olaxbt-nexus analyses the strategy bound to this connection’s API key. inline analyses an equity curve you supply directly, from any venue or backtest."},"symbol":{"description":"For olaxbt-nexus: the market the strategy trades, used for point-in-time reads. Default BTC/USDT.","type":"string","minLength":3,"maxLength":32},"trackRecord":{"description":"Required when source is inline.","type":"object","properties":{"label":{"default":"inline-track-record","description":"A name for this track record, echoed back in results. Do not put anything sensitive here.","type":"string","minLength":1,"maxLength":80},"equity":{"minItems":2,"maxItems":10000,"type":"array","items":{"type":"object","properties":{"t":{"description":"Epoch milliseconds, epoch seconds, or an ISO 8601 timestamp. UTC is assumed.","type":["number","string"]},"equity":{"type":"number","exclusiveMinimum":0,"description":"Account equity at that instant, in any single consistent unit."}},"required":["t","equity"]},"description":"The equity curve, one point per period. Order does not matter; it is sorted by timestamp."},"trades":{"maxItems":20000,"type":"array","items":{"type":"object","properties":{"symbol":{"type":"string","minLength":1,"maxLength":64},"pnl":{"type":"number","description":"Realised profit or loss for the closed trade, in the equity unit."},"exitedAt":{"type":["number","string"]},"entryPrice":{"type":"number"},"exitPrice":{"type":"number"},"holdingBars":{"type":"integer","minimum":0,"maximum":9007199254740991},"exitReason":{"type":"string","maxLength":120}},"required":["pnl"]}},"reportedSharpe":{"description":"Optional. The Sharpe ratio you believe this track record has, so Regimen can contrast it with its own.","type":"number"}},"required":["equity"]}},"required":["source"],"description":"Which track record to analyse."},"benchmarkSharpe":{"default":0,"description":"Per-period Sharpe the record must beat. 0 asks only whether there is any edge at all.","type":"number"},"confidence":{"default":0.95,"type":"number","exclusiveMinimum":0.5,"exclusiveMaximum":1},"trialSharpes":{"description":"Per-period Sharpe ratios of other configurations tried for this strategy. Supplying them enables the Deflated Sharpe Ratio, which discounts the headline for how many variants were tested before this one was reported.","maxItems":500,"type":"array","items":{"type":"number"}},"detail":{"default":"concise","description":"concise returns the verdict, the headline statistics and the reasoning — enough to answer a user. full adds every bucket, every dropped point and the complete provenance list, and is much larger.","type":"string","enum":["concise","full"]}},"required":["selector"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"regimen_regime_map","description":"Break a strategy’s returns down by the market conditions that held on each date — volatility, funding, open interest, positioning, sentiment, trend state — and report performance per bucket. Each factor also gets a permutation test: the observed best-to-worst spread is compared against spreads produced by randomly reshuffling the regime labels, so a flattering subset cannot pass itself off as a regime effect. Use this after regimen_evaluate_track_record when you need to know WHERE an edge comes from, or whether it is a bet on conditions that could end.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"selector":{"type":"object","properties":{"source":{"type":"string","enum":["olaxbt-nexus","inline"],"description":"olaxbt-nexus analyses the strategy bound to this connection’s API key. inline analyses an equity curve you supply directly, from any venue or backtest."},"symbol":{"description":"For olaxbt-nexus: the market the strategy trades, used for point-in-time reads. Default BTC/USDT.","type":"string","minLength":3,"maxLength":32},"trackRecord":{"description":"Required when source is inline.","type":"object","properties":{"label":{"default":"inline-track-record","description":"A name for this track record, echoed back in results. Do not put anything sensitive here.","type":"string","minLength":1,"maxLength":80},"equity":{"minItems":2,"maxItems":10000,"type":"array","items":{"type":"object","properties":{"t":{"description":"Epoch milliseconds, epoch seconds, or an ISO 8601 timestamp. UTC is assumed.","type":["number","string"]},"equity":{"type":"number","exclusiveMinimum":0,"description":"Account equity at that instant, in any single consistent unit."}},"required":["t","equity"]},"description":"The equity curve, one point per period. Order does not matter; it is sorted by timestamp."},"trades":{"maxItems":20000,"type":"array","items":{"type":"object","properties":{"symbol":{"type":"string","minLength":1,"maxLength":64},"pnl":{"type":"number","description":"Realised profit or loss for the closed trade, in the equity unit."},"exitedAt":{"type":["number","string"]},"entryPrice":{"type":"number"},"exitPrice":{"type":"number"},"holdingBars":{"type":"integer","minimum":0,"maximum":9007199254740991},"exitReason":{"type":"string","maxLength":120}},"required":["pnl"]}},"reportedSharpe":{"description":"Optional. The Sharpe ratio you believe this track record has, so Regimen can contrast it with its own.","type":"number"}},"required":["equity"]}},"required":["source"],"description":"Which track record to analyse."},"minSample":{"default":15,"description":"Buckets below this many observations are returned but flagged unusable.","type":"integer","minimum":5,"maximum":500},"maxDates":{"default":45,"description":"How many of the most recent dates to read conditions for, bounded by the upstream rate limit.","type":"integer","minimum":5,"maximum":45},"detail":{"default":"concise","description":"concise returns the verdict, the headline statistics and the reasoning — enough to answer a user. full adds every bucket, every dropped point and the complete provenance list, and is much larger.","type":"string","enum":["concise","full"]}},"required":["selector"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"regimen_self_attack","description":"Run Regimen’s own analysis against controls whose answer is known in advance: the strategy’s returns with the edge mathematically removed, and a simulated population of strategies with no edge at all. Returns whether the engine correctly found nothing in them, and where the real strategy’s confidence sits among pure-luck strategies of the same length and volatility. Use this when a user is entitled to ask why they should believe the verdict, or before quoting a result as evidence.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"selector":{"type":"object","properties":{"source":{"type":"string","enum":["olaxbt-nexus","inline"],"description":"olaxbt-nexus analyses the strategy bound to this connection’s API key. inline analyses an equity curve you supply directly, from any venue or backtest."},"symbol":{"description":"For olaxbt-nexus: the market the strategy trades, used for point-in-time reads. Default BTC/USDT.","type":"string","minLength":3,"maxLength":32},"trackRecord":{"description":"Required when source is inline.","type":"object","properties":{"label":{"default":"inline-track-record","description":"A name for this track record, echoed back in results. Do not put anything sensitive here.","type":"string","minLength":1,"maxLength":80},"equity":{"minItems":2,"maxItems":10000,"type":"array","items":{"type":"object","properties":{"t":{"description":"Epoch milliseconds, epoch seconds, or an ISO 8601 timestamp. UTC is assumed.","type":["number","string"]},"equity":{"type":"number","exclusiveMinimum":0,"description":"Account equity at that instant, in any single consistent unit."}},"required":["t","equity"]},"description":"The equity curve, one point per period. Order does not matter; it is sorted by timestamp."},"trades":{"maxItems":20000,"type":"array","items":{"type":"object","properties":{"symbol":{"type":"string","minLength":1,"maxLength":64},"pnl":{"type":"number","description":"Realised profit or loss for the closed trade, in the equity unit."},"exitedAt":{"type":["number","string"]},"entryPrice":{"type":"number"},"exitPrice":{"type":"number"},"holdingBars":{"type":"integer","minimum":0,"maximum":9007199254740991},"exitReason":{"type":"string","maxLength":120}},"required":["pnl"]}},"reportedSharpe":{"description":"Optional. The Sharpe ratio you believe this track record has, so Regimen can contrast it with its own.","type":"number"}},"required":["equity"]}},"required":["source"],"description":"Which track record to analyse."},"simulations":{"default":1000,"type":"integer","minimum":100,"maximum":10000}},"required":["selector"],"$schema":"https://json-schema.org/draft/2020-12/schema"}}],"scan":{"score":81,"grade":"B","scanned_at":"2026-09-19T19:53:34.946Z","report":{"scannerVersion":"0.1.5","scannedAt":"2026-09-19T19:53:34.848Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1485ms"]},"poisoning":{"score":15,"max":15,"notes":["4 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":15,"max":15,"notes":["last push 0 days ago"]},"identity":{"score":8,"max":10,"notes":["registry namespace matches repository owner","GitHub account older than a year"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"}],"inputs":{"probes":[{"url":"https://regimen-nu.vercel.app/mcp","reachable":true,"authRequired":false,"latencyMs":1485,"serverInfo":{"name":"regimen","version":"1.0.0"}}],"packages":[],"repo":{"found":true,"owner":"RaYYeR220","repo":"regimen","archived":false,"pushedAt":"2026-09-19T14:07:22Z","stars":0,"forks":0,"openIssues":0,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/96079039?v=4","ownerCreatedAt":"2021-12-13T18:24:32Z","license":"MIT"},"icon":{"url":null,"source":"none"},"presence":{"stars":0,"forks":0,"downloadsWeek":null,"license":"MIT","lastPushAt":"2026-09-19T14:07:22.000Z","score":23}}}},"grade_history":[],"reviews":[]}