Chronulus MCP Server

Official

save_prediction_analysis_html

Save BinaryPredictor analysis to HTML, including beta distribution plots and expert opinions, by providing the request_id, output_path, and html_name. Ideal for documenting and sharing AI-powered forecasting results.

Instructions

A tool that saves an analysis of a BinaryPredictor prediction to HTML.

The analysis includes a plot of the theoretical and empirical beta distribution estimated by Chronulus and also list the opinions provided by each expert.

When to use this tool:

  • Use this tool when you need to save the BinaryPredictor estimates to for the user

How to use this tool:

  • Provide the request_id from a previous prediction response
  • Specify the output_path where the html should be saved
  • Provide html_name for the file (must end in .html)
  • The tool will provide status updates through the MCP context

Input Schema

NameRequiredDescriptionDefault
chronulus_prediction_summaryYesA summary paragraph distilling prediction results and expert opinions provided by Chronulus
dist_shapeYesA one line description of the shape of the distribution of predictions
dist_shape_interpretationYes2-3 sentences interpreting the shape of the distribution of predictions in layman's terms
html_nameYesThe path where the HTML file should be saved.
output_pathYesThe path where the HTML file should be saved.
plot_labelYesLabel for the Beta plot
request_idYesThe request_id from the BinaryPredictor result
titleYesTitle of analysis

Input Schema (JSON Schema)

{ "properties": { "chronulus_prediction_summary": { "description": "A summary paragraph distilling prediction results and expert opinions provided by Chronulus", "title": "Chronulus Prediction Summary", "type": "string" }, "dist_shape": { "description": "A one line description of the shape of the distribution of predictions", "title": "Dist Shape", "type": "string" }, "dist_shape_interpretation": { "description": "2-3 sentences interpreting the shape of the distribution of predictions in layman's terms", "title": "Dist Shape Interpretation", "type": "string" }, "html_name": { "description": "The path where the HTML file should be saved.", "title": "Html Name", "type": "string" }, "output_path": { "description": "The path where the HTML file should be saved.", "title": "Output Path", "type": "string" }, "plot_label": { "description": "Label for the Beta plot", "title": "Plot Label", "type": "string" }, "request_id": { "description": "The request_id from the BinaryPredictor result", "title": "Request Id", "type": "string" }, "title": { "description": "Title of analysis", "title": "Title", "type": "string" } }, "required": [ "request_id", "output_path", "html_name", "title", "plot_label", "chronulus_prediction_summary", "dist_shape", "dist_shape_interpretation" ], "title": "save_prediction_analysis_htmlArguments", "type": "object" }
ID: idtstx1trt