streamable-httpupdated 25d ago
Most people learn leverage, liquidation and impermanent loss by losing money to them. The lab is the cheaper way round.
What can you do with strategy lab?
⢠whoami
const kelly = {
what: "autonomous trading agent that shows its work",
chain: "Robinhood Chain Ā· 4663 Ā· Arbitrum stack",
loop: ["observe", "think", "decide", "act", "learn", "broadcast"],
publishes: "the reasoning behind every call ā including the losing ones",
ledger: "append-only. failures and rules-engine rejections included",
execution: "paper mode. the EVM path is wired and deliberately not armed",
thesis: "nobody pays to be wrong",
} as const;
⢠the strategy lab
Most people learn leverage, liquidation and impermanent loss by losing money to them. The lab is the cheaper way round.
You submit a lowcap, perp or LP strategy as parameters, not prose. The lab stress-tests it across thousands of simulated paths and publishes the whole distribution ā not one backtest number that hides the tail where the damage lives.
| Certification gate | ā„ 3 runs and ā„ 1,500 paths |
| How to size | against the 5th percentile the run prints, never the median |
| What a pass means | a statement about a distribution ā not a prediction |
| Who pays | trading fees cover the $0.85 of compute per run. Not you. |
⢠connect an agent
Kelly speaks MCP, so another agent can read the record without scraping HTML ā and the reproduction seed comes with it.
claude mcp add --transport http kelly https://kellyruns.xyz/mcp
Stateless streamable HTTP, protocol 2025-06-18, no auth and no key. Published
to the official registry as
xyz.kellyruns/strategy-lab.
Read-only by design. No tool here submits a strategy, funds a run, or moves anything ā writes belong behind a wallet session, and an unauthenticated endpoint is the wrong place to re-implement one.
Tools
| Tool | What it returns |
|---|---|
get_agent_state |
Treasury, open positions, recent trades, and the reasoning behind the latest cycle. Paper mode ā a published track record, not a portfolio. |
get_certification_gate |
The thresholds a strategy must clear, and what a pass does and does not mean. Read this first. |
get_lab_summary |
Counts by status, testing-pool balance, and how many runs it can still fund. |
list_strategies |
Strategies filtered by kind and status, each with its certification rollup ā runs, paths, median PnL, worst case, ruin rate. |
get_strategy |
One strategy in full: parameters, verdict, every check the gate ran, and each run's PRNG seed. |
The seed is the point. Re-running with it reproduces the result exactly, which is what makes a verdict something you can disagree with by running it rather than by arguing about it.
⢠why "Kelly"
The Kelly Criterion (John L. Kelly Jr., Bell Labs, 1956) answers the question retail traders skip: not is this a good bet but how much should I bet. That is the direct ancestor of the risk clamp that gets the last word on sizing here, over anything the model proposed.
Which is also why the agent is a character and not a dashboard. Kelly says no
is a sentence. A tool can't be the subject of one.
⢠honest status
Up front, because a project about publishing losses cannot be coy about its own readiness.
execution paper mode. every fill simulated, slippage and fees modelled
pessimistically so edge isn't an artifact of frictionless fills
evm path wired, deliberately NOT armed ā pending real quoting, bounded
approvals, a token safety check, and nonce management
vault no contract deployed. /vault shows a requirements checklist,
not a deposit button. nothing here custodies anyone's funds
wallet connecting signs an identity statement and nothing else.
no transaction, no approval, no transfer
advice none of this is financial advice. the agent is not a licensed
advisor, and a certification is not a prediction
⢠on chain
| Chain | Robinhood Chain ā 4663, Arbitrum stack, ETH gas |
| ERC-8004 Identity Registry | 0x8004A169ā¦a432 |
| Agent registration | /.well-known/agent-registration.json |
⢠built with
TypeScript Ā· Next.js Ā· viem Ā· Postgres Ā· Anthropic SDK
The art above is generated by scripts/build-art.mjs ā
two self-contained SVGs, no external fonts and no remote assets, because
GitHub's image proxy blocks every outbound fetch. No third-party widget
services either, so nothing here breaks when someone else's server goes down.
Built on Robinhood Chain. Not affiliated with, endorsed by, sponsored by, or partnered with Robinhood Markets, Inc. The chain is permissionless ā anyone can deploy on it without approval, and that includes this project.
Install
Add strategy lab to your client. Pick the one you use.
claude mcp add --transport http strategy-lab https://kellyruns.xyz/mcpcodex mcp add strategy-lab --url https://kellyruns.xyz/mcp{
"mcpServers": {
"strategy-lab": {
"url": "https://kellyruns.xyz/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"strategy-lab": {
"type": "http",
"url": "https://kellyruns.xyz/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"strategy-lab": {
"url": "https://kellyruns.xyz/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"strategy-lab": {
"serverUrl": "https://kellyruns.xyz/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
5 tools
strategy lab exposes 5 tools to a connected agent.
- get_agent_state
- Treasury, open positions, recent trades, and the reasoning behind the latest cycle. Paper mode ā a published track record, not a portfolio.
- get_certification_gate
- The thresholds a strategy must clear, and what a pass does and does not mean. Read this first.
- get_lab_summary
- Counts by status, testing-pool balance, and how many runs it can still fund.
- list_strategies
- Strategies filtered by kind and status, each with its certification rollup ā runs, paths, median PnL, worst case, ruin rate.
- get_strategy
- One strategy in full: parameters, verdict, every check the gate ran, and each run's PRNG seed.
Score
63 / 100
Good
- Documentation20/25
- Maintenance19/25
- Trust6/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 18 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 5 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Aug 14, 2026 |