topview-tiktok-shop-ops

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Topview TikTok Shop Ops

Topview TikTok Shop 运营工具

TikTok Shop data via the host's unified
topview-mcp
server (progressive disclosure; domain
tiktok
; deferred
td_*
tools).
通过主机统一的**
topview-mcp
**服务器获取TikTok Shop数据(渐进式披露;域名为
tiktok
;延迟加载
td_*
工具)。

Step 0 — Bootstrap

步骤0 — 初始化准备

  1. Confirm MCP server
    topview-mcp
    is connected (look for
    use_tiktok_data
    ,
    get_tool_schema
    ,
    call_tool
    ). Do not expect
    td_*
    as top-level tools/list entries.
  2. If missing, point the user to
    mcp.example.json
    ~/.cursor/mcp.json
    , reload MCP.
  3. Do not run
    scripts/mcp_call.py
    , open SSE yourself, or use curl/raw HTTP.
  1. 确认已连接MCP服务器**
    topview-mcp
    **(查看是否有
    use_tiktok_data
    get_tool_schema
    call_tool
    工具)。不要期望
    td_*
    工具会直接出现在顶层工具列表中。
  2. 如果未找到相关工具,请引导用户查看
    mcp.example.json
    ~/.cursor/mcp.json
    ,然后重新加载MCP。
  3. 请勿运行
    scripts/mcp_call.py
    、自行开启SSE或使用curl/原生HTTP请求。

Execution

执行流程

Server:
topview-mcp
(unified). Never open SSE yourself.
TikTok data tools are deferred. Invoke via progressive disclosure:
  1. Read the
    use_tiktok_data
    description on
    tools/list
    (embedded Tools catalog). Calling
    use_tiktok_data
    only to list tools is optional.
  2. Pick a deferred
    td_*
    name from the catalog or references/tool_routing.md.
  3. get_tool_schema
    with
    { "name": "<td_*>", "domain": "tiktok" }
    .
  4. call_tool
    with
    { "name": "<td_*>", "domain": "tiktok", "arguments": { "req": { ... } } }
    (confirm shape with schema).
Typical host tool ids:
mcp__topview-mcp__get_tool_schema
/
mcp__topview-mcp__call_tool
.
Prefer
td_*
for market/item/creator/video/live intelligence. Do not use
use_amazon_data
/ Amazon deferred names for TikTok intents.
服务器:
topview-mcp
(统一入口)。禁止自行开启SSE。
TikTok数据工具采用延迟加载方式。需通过渐进式披露流程调用:
  1. 查看
    tools/list
    (内置工具目录)中的
    use_tiktok_data
    说明。调用
    use_tiktok_data
    仅用于列出工具,此步骤为可选操作
  2. 从工具目录或references/tool_routing.md中选择一个延迟加载的
    td_*
    工具名称。
  3. 使用参数
    { "name": "<td_*>", "domain": "tiktok" }
    调用
    get_tool_schema
  4. 使用参数
    { "name": "<td_*>", "domain": "tiktok", "arguments": { "req": { ... } } }
    调用
    call_tool
    (请根据工具schema确认参数格式)。
典型的主机工具ID:
mcp__topview-mcp__get_tool_schema
/
mcp__topview-mcp__call_tool

优先使用
td_*
工具获取市场/商品/达人/视频/直播情报。请勿针对TikTok相关需求使用
use_amazon_data
或亚马逊延迟加载工具名称。

UX Rules

用户体验规则

  1. Be concise; lead with actionable findings.
  2. Ask for region / category / product identifiers when missing.
  3. Do not invent private shop-backend ads metrics.
  4. For video/image/avatar production, chain to
    topview-generate
    .
  5. Match the user's language.
  1. 内容简洁,优先展示可执行的分析结果。
  2. 当缺少区域/品类/商品标识符时,主动询问用户。
  3. 请勿编造私有店铺后台的广告指标。
  4. 如需生成视频/图片/头像,请关联调用
    topview-generate
    工具。
  5. 使用与用户一致的语言进行沟通。

Source

来源

Adapted from Marketing Studio TikTok Shop expert skills (V030) + topview-mcp.
改编自Marketing Studio TikTok Shop专家技能(V030)+ topview-mcp。