Chronulus MCP Server

Official

create_chronulus_session

Initiate a new forecasting session by providing a use case name, situation context, and specific task details to generate a unique session_id for AI-powered predictions.

Instructions

A tool that creates a new Chronulus Session and returns a session_id

When to use this tool:

  • Use this tool when a user has requested a forecast or prediction for a new use case
  • Before calling this tool make sure you have enough information to write a well-defined situation and task. You might need to ask clarifying questions in order to get this from the user.
  • The same session_id can be reused as long as the situation and task remain the same
  • If user wants to forecast a different use case, create a new session and then use that

How to use this tool:

  • To create a session, you need to provide a situation and task that describe the forecasting use case
  • If the user has not provided enough detail for you to decompose the use case into a situation (broad or background context) and task (specific requirements for the forecast), ask them to elaborate since more detail will result in a better / more accurate forecast.
  • Once created, this will generate a unique session_id that can be used to when calling other tools about this use case.

Input Schema

NameRequiredDescriptionDefault
nameYesA short descriptive name for the use case defined in the session.
situationYesThe broader context for the use case
taskYesSpecific details on the forecasting or prediction task.

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "A short descriptive name for the use case defined in the session.", "title": "Name", "type": "string" }, "situation": { "description": "The broader context for the use case", "title": "Situation", "type": "string" }, "task": { "description": "Specific details on the forecasting or prediction task.", "title": "Task", "type": "string" } }, "required": [ "name", "situation", "task" ], "title": "create_chronulus_sessionArguments", "type": "object" }
ID: idtstx1trt