Genkit MCP

Official
Apache 2.0
128
1,166

longRunningOperation

Demonstrates a long running operation with progress updates

Input Schema

NameRequiredDescriptionDefault
durationNoDuration of the operation in seconds
stepsNoNumber 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" }