notifyProgress method
Send progress notification for a tool operation
Implementation
void notifyProgress(String operationId, double progress, String message) {
// Find the session and request ID for this operation
final operation = _pendingOperations[operationId];
if (operation?.requestId != null) {
sendProgressNotification(
operation!.sessionId,
operation.requestId!,
progress
);
}
}