longRunningOperation
Simulates and tracks long-running operations with progress updates by defining duration and steps, aiding in testing and monitoring dynamic processes on MCP Elicitations Demo Server.
Instructions
Demonstrates a long running operation with progress updates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Duration of the operation in seconds | |
steps | No | Number of steps in the operation |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration": {
"default": 10,
"description": "Duration of the operation in seconds",
"type": "number"
},
"steps": {
"default": 5,
"description": "Number of steps in the operation",
"type": "number"
}
},
"type": "object"
}