longRunningOperation
Monitor and manage extended operations with real-time progress updates. Specify duration and steps to track task execution efficiently using the Model Context Protocol (MCP).
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"
}