> ## Documentation Index
> Fetch the complete documentation index at: https://mcp.gjxx.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# 进度

<div id="enable-section-numbers" />

<Info>**协议修订版**：draft</Info>

Model Context Protocol (MCP)通过通知消息支持对长时间运行操作的可选进度跟踪。任何一方都可以发送进度通知来提供操作状态的更新。

## 进度流程

当一方想要\_接收\_请求的进度更新时，它在请求元数据中包含一个`progressToken`。

* 进度令牌**必须**是字符串或整数值
* 进度令牌可以使用任何方式由发送者选择，但**必须**在所有活动请求中唯一。

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "some_method",
  "params": {
    "_meta": {
      "progressToken": "abc123"
    }
  }
}
```

接收者**可以**然后发送包含以下内容的进度通知：

* 原始进度令牌
* 到目前为止的当前进度值
* 可选的"total"值
* 可选的"message"值

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "notifications/progress",
  "params": {
    "progressToken": "abc123",
    "progress": 50,
    "total": 100,
    "message": "Reticulating splines..."
  }
}
```

* `progress`值**必须**随着每次通知而增加，即使总数未知。
* `progress`和`total`值**可以**是浮点数。
* `message`字段**应该**提供相关的人类可读进度信息。

## 行为要求

1. 进度通知**必须**仅引用：
   * 在活动请求中提供的令牌
   * 与进行中操作关联的令牌

2. 进度请求的接收者**可以**：
   * 选择不发送任何进度通知
   * 以他们认为合适的任何频率发送通知
   * 如果未知则省略总数值

```mermaid theme={null}
sequenceDiagram
    participant Sender
    participant Receiver

    Note over Sender,Receiver: Request with progress token
    Sender->>Receiver: Method request with progressToken

    Note over Sender,Receiver: Progress updates
    Receiver-->>Sender: Progress notification (0.2/1.0)
    Receiver-->>Sender: Progress notification (0.6/1.0)
    Receiver-->>Sender: Progress notification (1.0/1.0)

    Note over Sender,Receiver: Operation complete
    Receiver->>Sender: Method response
```

## 实施说明

* 发送者和接收者**应该**跟踪活动进度令牌
* 双方**应该**实施速率限制以防止洪泛
* 进度通知**必须**在完成后停止
