revenuecat-store-state

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Managing product store state

管理产品商店状态

The RevenueCat MCP store-state tools read and write product state — status, pricing, availability, and review metadata — directly in App Store Connect and Google Play Console. Reads are immediate; writes are asynchronous operations that must be polled for completion.
Refer to the MCP tool schemas for the exact parameters of each tool.
RevenueCat MCP商店状态工具可直接在App Store Connect和Google Play Console中读取和写入产品状态——状态、定价、可用性以及审核元数据。读取操作是即时的;写入操作是异步的,需要轮询以确认完成状态。
请参考MCP工具架构文档了解每个工具的确切参数。

Recommended flow

推荐流程

  1. Inspect first. Call
    get-product-store-state
    to understand the current state of the product before making any change.
  2. Upload a review screenshot if needed. If the user has a review screenshot to attach, call
    upload-product-store-state-screenshot
    before setting the state.
  3. Apply the change. Call
    set-product-store-state
    with the desired changes.
  4. Poll for completion. Call
    get-product-store-state-operation
    until
    status
    is
    succeeded
    or
    failed
    . If the operation fails, report the error details back to the user instead of retrying blindly.
  5. Equalize territory pricing if warned. If
    warnings
    indicates incomplete subscription territory pricing, call
    equalize-subscription-prices
    .
  1. 先查看状态。在进行任何修改之前,调用
    get-product-store-state
    来了解产品的当前状态。
  2. 如有需要,上传审核截图。如果用户有需要附加的审核截图,请在设置状态前调用
    upload-product-store-state-screenshot
  3. 应用修改。调用
    set-product-store-state
    并传入所需的修改内容。
  4. 轮询完成状态。调用
    get-product-store-state-operation
    直到
    status
    变为
    succeeded
    failed
    。如果操作失败,请向用户报告错误详情,而非盲目重试。
  5. 若收到警告则统一区域定价。如果
    warnings
    显示订阅区域定价不完整,请调用
    equalize-subscription-prices