Back to MCP catalog
list_runsList a strategy's runs (backtests, sweeps, walk-forwards) or expand a sweep into its child backtests.
Area
Backtesting & Validation
Group
Backtests
Access
Read
Risk
Read-only
Details
Full description
Details
Unified listing of strategy runs: backtests, sweeps, and walk-forward analyses.
Provide strategy_id to list runs for a strategy, or batch_id to expand a sweep into its child backtests. At least one is required.
Args
strategy_id— strategy to list runs for.batch_id— sweep batch to expand into child backtests.type— filter by run kind (defaultall).limit— results per page (default 50).offset— results to skip (default 0).
Note — with type="all", sweep variants appear twice: once as individual backtests and once collapsed under their sweep. Use type="sweep" for one row per sweep instead.
Capabilities
Bounded options and operating modes surfaced above the full JSON schema.
Type options
type
backtestsweepwalk_forwardallRequired Inputs
None.
Optional Inputs
FieldTypeDescription
batch_idanyOf (2 variants)Sweep batch identifier. When provided, returns the child backtests of that sweep (type is forced to 'backtest').limitintegerMaximum number of runs to return per page (max 100)offsetintegerNumber of results to skip for paginationstrategy_idanyOf (2 variants)Strategy identifier. Required unless batch_id is provided.typeenum: backtest, sweep, walk_forward, allRun kind to list. 'backtest' returns individual backtest runs; 'sweep' collapses backtests by batch_id; 'walk_forward' returns walk-forward analyses; 'all' unions everything sorted by created_at DESC.