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

# MCP 使用限制

> Flowstep 使用限制如何应用于 MCP 工具调用，以及如何检查您的剩余配额。

Flowstep 使用限制在**组织**级别应用，在网络应用和 MCP 服务器之间**共享**。在 Cursor 中开始的生成计数与从 app.flowstep.ai 开始的生成使用相同的配额。

## 限制如何运作

限制按功能进行（主要功能是 `messages`）。每个套餐定义：

* 一个**每日限制** — 每天在 **00:00 UTC** 重置
* 一个**每月限制** — 在**每月的账户注册日期或付费订阅开始日期**重置

触及任一限制会阻止进一步的生成，直到它重置。

## 检查您的配额

调用 `get-plan-details` 查看您的当前限制、使用情况和剩余配额：

```json theme={"system"}
// Response (excerpt)
{
  "limits": {
    "messages": {
      "daily": { "max": 50, "warn": 40 },
      "monthly": { "max": 500, "warn": 400 },
      "unlimited": false
    }
  },
  "usage": {
    "messages": { "daily": 12, "monthly": 87 }
  },
  "remaining": {
    "messages": { "daily": 38, "monthly": 413 }
  }
}
```

实际限制值取决于您的套餐。运行工具查看您的具体数字。有关按套餐的详情，请参阅 [定价](https://flowstep.ai/pricing)。

## 每个请求的限制（所有套餐）

这些限制在请求级别强制执行，与套餐无关：

| 限制                                                                             | 值                                                                                                                                         |
| ------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------- |
| 每次 `create-new-design` / `edit-design` 调用的最大附件数                                | 5                                                                                                                                         |
| 最大附件大小                                                                         | 3 MB                                                                                                                                      |
| 支持的附件类型                                                                        | `image/jpeg`, `image/png`, `image/webp`, `application/pdf` (base64)，加上文本/代码文件 — `.html`, `.htm`, `.js`, `.ts`, `.jsx`, `.tsx` — 作为纯 UTF-8 |
| 生成超时（`create-new-design`, `edit-design`, `regenerate-design`, `expand-design`） | 180 秒                                                                                                                                     |

## 失败的生成不计数

如果生成请求失败 — 由于超时、服务器错误或无效输入 — 它**不**消耗消息。
