mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 23:29:10 +02:00
* Update repository references from jlowin/fastmcp to prefecthq/fastmcp * Retrigger CI after repo transfer * chore: Update SDK documentation * Only run deep triage on bug issues for jlowin --------- Co-authored-by: marvin-context-protocol[bot] <225465937+marvin-context-protocol[bot]@users.noreply.github.com>
25 lines
673 B
Text
25 lines
673 B
Text
---
|
|
title: progress
|
|
sidebarTitle: progress
|
|
---
|
|
|
|
# `fastmcp.client.progress`
|
|
|
|
## Functions
|
|
|
|
### `default_progress_handler` <sup><a href="https://github.com/PrefectHQ/fastmcp/blob/main/src/fastmcp/client/progress.py#L12" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
|
|
```python
|
|
default_progress_handler(progress: float, total: float | None, message: str | None) -> None
|
|
```
|
|
|
|
|
|
Default handler for progress notifications.
|
|
|
|
Logs progress updates at debug level, properly handling missing total or message values.
|
|
|
|
**Args:**
|
|
- `progress`: Current progress value
|
|
- `total`: Optional total expected value
|
|
- `message`: Optional status message
|
|
|