@fastmoss/cli 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/README.zh-CN.md +10 -2
- package/bin/install-skill.js +34 -0
- package/lib/runtime.js +179 -0
- package/package.json +4 -2
- package/skills/fastmoss-cli/SKILL.md +70 -0
- package/skills/fastmoss-cli/agents/openai.yaml +3 -0
- package/skills/fastmoss-cli/data/tools.json +4014 -0
- package/skills/fastmoss-cli/references/cli.md +70 -0
- package/skills/fastmoss-cli/references/tool-call.md +103 -0
- package/skills/fastmoss-cli/references/tools-advertising.md +48 -0
- package/skills/fastmoss-cli/references/tools-agency.md +145 -0
- package/skills/fastmoss-cli/references/tools-auxiliary-knowledge.md +200 -0
- package/skills/fastmoss-cli/references/tools-creator.md +197 -0
- package/skills/fastmoss-cli/references/tools-market.md +69 -0
- package/skills/fastmoss-cli/references/tools-product.md +230 -0
- package/skills/fastmoss-cli/references/tools-shop.md +200 -0
- package/skills/fastmoss-cli/references/tools.md +26 -0
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
# Creator Tools
|
|
2
|
+
|
|
3
|
+
> Creator tools for creator search, profile checks, ecommerce performance, audience fit, trends, videos, and partnership evaluation.
|
|
4
|
+
|
|
5
|
+
## Tool summary
|
|
6
|
+
|
|
7
|
+
| Tool | Description |
|
|
8
|
+
|---|---|
|
|
9
|
+
| creator_cargo_summary | Use when the user wants a creator video-vs-live selling split and main promoted categories. |
|
|
10
|
+
| creator_data_trends | Use when the user asks about creator follower, engagement, or commerce trends. Select field_type; returns daily serie... |
|
|
11
|
+
| creator_fans_distribution | Use when the user wants to check whether a creator audience matches a target market. Returns age, gender, location, a... |
|
|
12
|
+
| creator_product_list | Use when the user wants a creator showcase product list. Returns product GMV, units sold, category, price, commission... |
|
|
13
|
+
| creator_profile_overview | Use when the user wants a creator snapshot or partnership check. Returns profile and performance_overview; GMV/rankin... |
|
|
14
|
+
| creator_rank_top_ecommerce | Use when the user wants top ecommerce creators. Returns creator and ranking_metrics; date_value is returned as YYYY-W... |
|
|
15
|
+
| creator_rank_top_growth | Use when the user wants fast-growing creators. Returns creator and growth_metrics; date_value is returned as YYYY-Www... |
|
|
16
|
+
| creator_rank_top_potential | Use when the user wants creators with ecommerce potential. Returns creator, potential_metrics, and audience_summary;... |
|
|
17
|
+
| creator_search | Use when the user has no UID and provides a nickname, keyword, niche, or region. Returns creator, commerce_summary, a... |
|
|
18
|
+
| creator_video_analysis | Use when the user wants creator content direction, tags, and selling videos. Returns video_tag_summary and video_list... |
|
|
19
|
+
|
|
20
|
+
## Tool details
|
|
21
|
+
|
|
22
|
+
### creator_cargo_summary
|
|
23
|
+
|
|
24
|
+
Use when the user wants a creator video-vs-live selling split and main promoted categories.
|
|
25
|
+
|
|
26
|
+
Example:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
fastmoss call --tool creator_cargo_summary --args '{"filter":{}}' --output mcp
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Parameters:
|
|
33
|
+
|
|
34
|
+
| Name | Type | Required | Description |
|
|
35
|
+
|---|---|---|---|
|
|
36
|
+
| filter | object | yes | Filter parameters. |
|
|
37
|
+
|
|
38
|
+
### creator_data_trends
|
|
39
|
+
|
|
40
|
+
Use when the user asks about creator follower, engagement, or commerce trends. Select field_type; returns daily series and period totals.
|
|
41
|
+
|
|
42
|
+
Example:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
fastmoss call --tool creator_data_trends --args '{"filter":{}}' --output mcp
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Parameters:
|
|
49
|
+
|
|
50
|
+
| Name | Type | Required | Description |
|
|
51
|
+
|---|---|---|---|
|
|
52
|
+
| filter | object | yes | Filter parameters. |
|
|
53
|
+
|
|
54
|
+
### creator_fans_distribution
|
|
55
|
+
|
|
56
|
+
Use when the user wants to check whether a creator audience matches a target market. Returns age, gender, location, and top segments.
|
|
57
|
+
|
|
58
|
+
Example:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
fastmoss call --tool creator_fans_distribution --args '{"filter":{}}' --output mcp
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Parameters:
|
|
65
|
+
|
|
66
|
+
| Name | Type | Required | Description |
|
|
67
|
+
|---|---|---|---|
|
|
68
|
+
| filter | object | yes | Filter parameters. |
|
|
69
|
+
|
|
70
|
+
### creator_product_list
|
|
71
|
+
|
|
72
|
+
Use when the user wants a creator showcase product list. Returns product GMV, units sold, category, price, commission, shop info, and time_range_days.
|
|
73
|
+
|
|
74
|
+
Example:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
fastmoss call --tool creator_product_list --args '{"filter":{}}' --output mcp
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Parameters:
|
|
81
|
+
|
|
82
|
+
| Name | Type | Required | Description |
|
|
83
|
+
|---|---|---|---|
|
|
84
|
+
| filter | object | yes | Filter parameters. |
|
|
85
|
+
| orderby | array | no | Sort options. Only the first sort rule takes effect. Fields: units_sold, gmv, commission_rate_percent. |
|
|
86
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
87
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
88
|
+
|
|
89
|
+
### creator_profile_overview
|
|
90
|
+
|
|
91
|
+
Use when the user wants a creator snapshot or partnership check. Returns profile and performance_overview; GMV/rankings are mostly historical cumulative, so use creator_search day28_gmv for current activity.
|
|
92
|
+
|
|
93
|
+
Example:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
fastmoss call --tool creator_profile_overview --args '{"filter":{}}' --output mcp
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Parameters:
|
|
100
|
+
|
|
101
|
+
| Name | Type | Required | Description |
|
|
102
|
+
|---|---|---|---|
|
|
103
|
+
| filter | object | yes | Filter parameters. |
|
|
104
|
+
|
|
105
|
+
### creator_rank_top_ecommerce
|
|
106
|
+
|
|
107
|
+
Use when the user wants top ecommerce creators. Returns creator and ranking_metrics; date_value is returned as YYYY-Www for weekly rankings.
|
|
108
|
+
|
|
109
|
+
Example:
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
fastmoss call --tool creator_rank_top_ecommerce --args '{"filter":{},"orderby":[],"page":1}' --output mcp
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Parameters:
|
|
116
|
+
|
|
117
|
+
| Name | Type | Required | Description |
|
|
118
|
+
|---|---|---|---|
|
|
119
|
+
| filter | object | no | Filter parameters. |
|
|
120
|
+
| orderby | array | no | Sort options. |
|
|
121
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
122
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
123
|
+
|
|
124
|
+
### creator_rank_top_growth
|
|
125
|
+
|
|
126
|
+
Use when the user wants fast-growing creators. Returns creator and growth_metrics; date_value is returned as YYYY-Www for weekly rankings.
|
|
127
|
+
|
|
128
|
+
Example:
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
fastmoss call --tool creator_rank_top_growth --args '{"filter":{},"orderby":[],"page":1}' --output mcp
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Parameters:
|
|
135
|
+
|
|
136
|
+
| Name | Type | Required | Description |
|
|
137
|
+
|---|---|---|---|
|
|
138
|
+
| filter | object | no | Filter parameters. |
|
|
139
|
+
| orderby | array | no | Sort options. |
|
|
140
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
141
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
142
|
+
|
|
143
|
+
### creator_rank_top_potential
|
|
144
|
+
|
|
145
|
+
Use when the user wants creators with ecommerce potential. Returns creator, potential_metrics, and audience_summary; date_value is returned as YYYY-Www for weekly rankings.
|
|
146
|
+
|
|
147
|
+
Example:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
fastmoss call --tool creator_rank_top_potential --args '{"filter":{},"orderby":[],"page":1}' --output mcp
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
Parameters:
|
|
154
|
+
|
|
155
|
+
| Name | Type | Required | Description |
|
|
156
|
+
|---|---|---|---|
|
|
157
|
+
| filter | object | no | Filter parameters. |
|
|
158
|
+
| orderby | array | no | Sort options. |
|
|
159
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
160
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
161
|
+
|
|
162
|
+
### creator_search
|
|
163
|
+
|
|
164
|
+
Use when the user has no UID and provides a nickname, keyword, niche, or region. Returns creator, commerce_summary, and audience_summary; day28_gmv is the key current-activity metric for tiering; has_email as a boolean, not the email address itself.
|
|
165
|
+
|
|
166
|
+
Example:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
fastmoss call --tool creator_search --args '{"filter":{},"keywords":"value","orderby":[]}' --output mcp
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Parameters:
|
|
173
|
+
|
|
174
|
+
| Name | Type | Required | Description |
|
|
175
|
+
|---|---|---|---|
|
|
176
|
+
| filter | object | no | Filter parameters. |
|
|
177
|
+
| keywords | string | no | Search keywords: product, shop, creator, video, live, or category terms. |
|
|
178
|
+
| orderby | array | no | Sort options. |
|
|
179
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
180
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
181
|
+
|
|
182
|
+
### creator_video_analysis
|
|
183
|
+
|
|
184
|
+
Use when the user wants creator content direction, tags, and selling videos. Returns video_tag_summary and video_list with interaction_rate_percent and linked_products so the model does not confuse video performance with product performance.
|
|
185
|
+
|
|
186
|
+
Example:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
fastmoss call --tool creator_video_analysis --args '{"filter":{}}' --output mcp
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
Parameters:
|
|
193
|
+
|
|
194
|
+
| Name | Type | Required | Description |
|
|
195
|
+
|---|---|---|---|
|
|
196
|
+
| filter | object | yes | Filter parameters. |
|
|
197
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Market Insight Tools
|
|
2
|
+
|
|
3
|
+
> Market insight tools for category size, growth, competition, rankings, opportunities, and creator sales matrix analysis.
|
|
4
|
+
|
|
5
|
+
## Tool summary
|
|
6
|
+
|
|
7
|
+
| Tool | Description |
|
|
8
|
+
|---|---|
|
|
9
|
+
| market_category_analysis | Use when the user wants category size, growth, competition, or opportunity. analysis_type basic_metrics returns categ... |
|
|
10
|
+
| market_category_author_sales_matrix | Use when the user wants category sales contribution by creator follower_tier. Returns creator_count, category_gmv, gm... |
|
|
11
|
+
| market_category_ranking | Use when the user wants category ranking, growth, or concentration. Returns ranking_scope and ranked_categories; no c... |
|
|
12
|
+
|
|
13
|
+
## Tool details
|
|
14
|
+
|
|
15
|
+
### market_category_analysis
|
|
16
|
+
|
|
17
|
+
Use when the user wants category size, growth, competition, or opportunity. analysis_type basic_metrics returns category, scale_metrics, growth_metrics, concentration_metrics; sales_trends returns trend_series; price_distribution returns sales_price_distribution with left-open right-closed price bands and sub_category_units_sold_total.
|
|
18
|
+
|
|
19
|
+
Example:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
fastmoss call --tool market_category_analysis --args '{"filter":{},"analysis_type":"basic_metrics"}' --output mcp
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Parameters:
|
|
26
|
+
|
|
27
|
+
| Name | Type | Required | Description |
|
|
28
|
+
|---|---|---|---|
|
|
29
|
+
| analysis_type | string | yes | Analysis type parameter. |
|
|
30
|
+
| filter | object | yes | Filter parameters. |
|
|
31
|
+
| lang | string | no | Language. Default EN_US, optional ZH_CN. |
|
|
32
|
+
|
|
33
|
+
### market_category_author_sales_matrix
|
|
34
|
+
|
|
35
|
+
Use when the user wants category sales contribution by creator follower_tier. Returns creator_count, category_gmv, gmv_share_percent, units_sold, and avg_creator_gmv.
|
|
36
|
+
|
|
37
|
+
Example:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
fastmoss call --tool market_category_author_sales_matrix --args '{"filter":{},"lang":"value"}' --output mcp
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Parameters:
|
|
44
|
+
|
|
45
|
+
| Name | Type | Required | Description |
|
|
46
|
+
|---|---|---|---|
|
|
47
|
+
| filter | object | no | Filter parameters. |
|
|
48
|
+
| lang | string | no | Language. Default EN_US, optional ZH_CN. |
|
|
49
|
+
|
|
50
|
+
### market_category_ranking
|
|
51
|
+
|
|
52
|
+
Use when the user wants category ranking, growth, or concentration. Returns ranking_scope and ranked_categories; no category_id means level-1 category ranking, and a level-1 category_id means level-2 subcategory ranking.
|
|
53
|
+
|
|
54
|
+
Example:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
fastmoss call --tool market_category_ranking --args '{"filter":{},"lang":"value","orderby":[]}' --output mcp
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Parameters:
|
|
61
|
+
|
|
62
|
+
| Name | Type | Required | Description |
|
|
63
|
+
|---|---|---|---|
|
|
64
|
+
| filter | object | no | Filter parameters. |
|
|
65
|
+
| lang | string | no | Language. Default EN_US, optional ZH_CN. |
|
|
66
|
+
| orderby | array | no | Sort options. Only the first sort rule takes effect. Use ranking fields such as category_units_sold. |
|
|
67
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
68
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
69
|
+
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
# Product Tools
|
|
2
|
+
|
|
3
|
+
> Product tools for product search, details, sales trends, creator mix, videos, SKUs, reviews, and ad investment analysis.
|
|
4
|
+
|
|
5
|
+
## Tool summary
|
|
6
|
+
|
|
7
|
+
| Tool | Description |
|
|
8
|
+
|---|---|
|
|
9
|
+
| product_category_info | Use when the user needs the product category tree or category levels. Prefer search_category_by_words for natural-lan... |
|
|
10
|
+
| product_creator_analysis | Use when the user wants who sells a product or the creator structure. Returns creator_summary with follower_tier_dist... |
|
|
11
|
+
| product_detail_info | Use when the user wants product basics, shop, price, rating, logistics, images, or ad status. Returns product and sho... |
|
|
12
|
+
| product_investment | Use when the user asks about product ads, spend, ROAS, or daily paid-traffic changes. Returns ad_performance_summary... |
|
|
13
|
+
| product_overview | Use when the user wants product channel attribution, lifecycle/momentum, or ad-vs-organic structure. Returns period_s... |
|
|
14
|
+
| product_rank_new_listed | Use when the user wants recently listed hot products. Returns FastMoss new-product ranking, first_3d_gmv/units_sold,... |
|
|
15
|
+
| product_rank_top_selling | Use when the user wants bestsellers or top products. Returns period_gmv/units_sold, total_gmv/units_sold, and units_s... |
|
|
16
|
+
| product_review_list | Use when the user wants product reviews or buyer feedback. Returns review list and count; supports time_range_days an... |
|
|
17
|
+
| product_sales_trend | Use when the user wants a product GMV/units trend or traction check. Returns period_summary and daily_trend with peri... |
|
|
18
|
+
| product_search | Use when the user has no product_id and provides a name, keyword, price band, category, bestseller clue, or new-produ... |
|
|
19
|
+
| product_sku | Use when the user wants SKU sales share, inventory share, or SKU health. Returns SKU-level sales and inventory shares. |
|
|
20
|
+
| product_video_list | Use when the user wants videos selling a product, high-play videos, or paid-vs-organic video traffic. Filter with is_... |
|
|
21
|
+
|
|
22
|
+
## Tool details
|
|
23
|
+
|
|
24
|
+
### product_category_info
|
|
25
|
+
|
|
26
|
+
Use when the user needs the product category tree or category levels. Prefer search_category_by_words for natural-language category terms.
|
|
27
|
+
|
|
28
|
+
Example:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
fastmoss call --tool product_category_info --args '{}' --output mcp
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Parameters: none documented.
|
|
35
|
+
|
|
36
|
+
### product_creator_analysis
|
|
37
|
+
|
|
38
|
+
Use when the user wants who sells a product or the creator structure. Returns creator_summary with follower_tier_distribution and creator_category_distribution, plus linked_creators with creator, product_contribution, creator_cumulative_performance, and audience_summary.
|
|
39
|
+
|
|
40
|
+
Example:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
fastmoss call --tool product_creator_analysis --args '{"filter":{}}' --output mcp
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Parameters:
|
|
47
|
+
|
|
48
|
+
| Name | Type | Required | Description |
|
|
49
|
+
|---|---|---|---|
|
|
50
|
+
| filter | object | yes | Filter parameters. |
|
|
51
|
+
| orderby | array | no | Sort options. |
|
|
52
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
53
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
54
|
+
|
|
55
|
+
### product_detail_info
|
|
56
|
+
|
|
57
|
+
Use when the user wants product basics, shop, price, rating, logistics, images, or ad status. Returns product and shop; detail_url points to TikTok.
|
|
58
|
+
|
|
59
|
+
Example:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
fastmoss call --tool product_detail_info --args '{"filter":{}}' --output mcp
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Parameters:
|
|
66
|
+
|
|
67
|
+
| Name | Type | Required | Description |
|
|
68
|
+
|---|---|---|---|
|
|
69
|
+
| filter | object | yes | Filter parameters. |
|
|
70
|
+
|
|
71
|
+
### product_investment
|
|
72
|
+
|
|
73
|
+
Use when the user asks about product ads, spend, ROAS, or daily paid-traffic changes. Returns ad_performance_summary and daily_ad_performance_trend; ad_gmv is ad-attributed.
|
|
74
|
+
|
|
75
|
+
Example:
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
fastmoss call --tool product_investment --args '{"filter":{}}' --output mcp
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Parameters:
|
|
82
|
+
|
|
83
|
+
| Name | Type | Required | Description |
|
|
84
|
+
|---|---|---|---|
|
|
85
|
+
| filter | object | yes | Filter parameters. |
|
|
86
|
+
|
|
87
|
+
### product_overview
|
|
88
|
+
|
|
89
|
+
Use when the user wants product channel attribution, lifecycle/momentum, or ad-vs-organic structure. Returns period_summary, daily_trend, ads_distribution, channel_distribution, and content_distribution.
|
|
90
|
+
|
|
91
|
+
Example:
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
fastmoss call --tool product_overview --args '{"filter":{}}' --output mcp
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
Parameters:
|
|
98
|
+
|
|
99
|
+
| Name | Type | Required | Description |
|
|
100
|
+
|---|---|---|---|
|
|
101
|
+
| filter | object | yes | Filter parameters. |
|
|
102
|
+
|
|
103
|
+
### product_rank_new_listed
|
|
104
|
+
|
|
105
|
+
Use when the user wants recently listed hot products. Returns FastMoss new-product ranking, first_3d_gmv/units_sold, and total_gmv/units_sold; new means listed within 30 days.
|
|
106
|
+
|
|
107
|
+
Example:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
fastmoss call --tool product_rank_new_listed --args '{"filter":{},"orderby":[],"page":1}' --output mcp
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Parameters:
|
|
114
|
+
|
|
115
|
+
| Name | Type | Required | Description |
|
|
116
|
+
|---|---|---|---|
|
|
117
|
+
| filter | object | no | Filter parameters. |
|
|
118
|
+
| orderby | array | no | Sort options. |
|
|
119
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
120
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
121
|
+
|
|
122
|
+
### product_rank_top_selling
|
|
123
|
+
|
|
124
|
+
Use when the user wants bestsellers or top products. Returns period_gmv/units_sold, total_gmv/units_sold, and units_sold_growth_rate_percent.
|
|
125
|
+
|
|
126
|
+
Example:
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
fastmoss call --tool product_rank_top_selling --args '{"filter":{},"orderby":[],"page":1}' --output mcp
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Parameters:
|
|
133
|
+
|
|
134
|
+
| Name | Type | Required | Description |
|
|
135
|
+
|---|---|---|---|
|
|
136
|
+
| filter | object | no | Filter parameters. |
|
|
137
|
+
| orderby | array | no | Sort options. |
|
|
138
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
139
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
140
|
+
|
|
141
|
+
### product_review_list
|
|
142
|
+
|
|
143
|
+
Use when the user wants product reviews or buyer feedback. Returns review list and count; supports time_range_days and rating/create_time/review_id sorting.
|
|
144
|
+
|
|
145
|
+
Example:
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
fastmoss call --tool product_review_list --args '{"filter":{},"orderby":[],"page":1}' --output mcp
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
Parameters:
|
|
152
|
+
|
|
153
|
+
| Name | Type | Required | Description |
|
|
154
|
+
|---|---|---|---|
|
|
155
|
+
| filter | object | no | Filter parameters. |
|
|
156
|
+
| orderby | array | no | Sort options. |
|
|
157
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
158
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
159
|
+
|
|
160
|
+
### product_sales_trend
|
|
161
|
+
|
|
162
|
+
Use when the user wants a product GMV/units trend or traction check. Returns period_summary and daily_trend with period_gmv, period_units_sold, daily_gmv, and daily_units_sold.
|
|
163
|
+
|
|
164
|
+
Example:
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
fastmoss call --tool product_sales_trend --args '{"filter":{}}' --output mcp
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Parameters:
|
|
171
|
+
|
|
172
|
+
| Name | Type | Required | Description |
|
|
173
|
+
|---|---|---|---|
|
|
174
|
+
| filter | object | no | Filter parameters. |
|
|
175
|
+
|
|
176
|
+
### product_search
|
|
177
|
+
|
|
178
|
+
Use when the user has no product_id and provides a name, keyword, price band, category, bestseller clue, or new-product clue. Returns product, sales_summary, distribution_summary, and shop.
|
|
179
|
+
|
|
180
|
+
Example:
|
|
181
|
+
|
|
182
|
+
```bash
|
|
183
|
+
fastmoss call --tool product_search --args '{"filter":{},"keywords":"value","orderby":[]}' --output mcp
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
Parameters:
|
|
187
|
+
|
|
188
|
+
| Name | Type | Required | Description |
|
|
189
|
+
|---|---|---|---|
|
|
190
|
+
| filter | object | no | Filter parameters. |
|
|
191
|
+
| keywords | string | no | Search keywords: product, shop, creator, video, live, or category terms. |
|
|
192
|
+
| orderby | array | no | Sort options. |
|
|
193
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
194
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
195
|
+
|
|
196
|
+
### product_sku
|
|
197
|
+
|
|
198
|
+
Use when the user wants SKU sales share, inventory share, or SKU health. Returns SKU-level sales and inventory shares.
|
|
199
|
+
|
|
200
|
+
Example:
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
fastmoss call --tool product_sku --args '{"filter":{}}' --output mcp
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
Parameters:
|
|
207
|
+
|
|
208
|
+
| Name | Type | Required | Description |
|
|
209
|
+
|---|---|---|---|
|
|
210
|
+
| filter | object | yes | Filter parameters. |
|
|
211
|
+
|
|
212
|
+
### product_video_list
|
|
213
|
+
|
|
214
|
+
Use when the user wants videos selling a product, high-play videos, or paid-vs-organic video traffic. Filter with is_ad; returns GMV, plays, video_desc, and fastmoss_url.
|
|
215
|
+
|
|
216
|
+
Example:
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
fastmoss call --tool product_video_list --args '{"filter":{}}' --output mcp
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
Parameters:
|
|
223
|
+
|
|
224
|
+
| Name | Type | Required | Description |
|
|
225
|
+
|---|---|---|---|
|
|
226
|
+
| filter | object | yes | Filter parameters. |
|
|
227
|
+
| orderby | array | no | Sort options. |
|
|
228
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
229
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
230
|
+
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
# Shop Tools
|
|
2
|
+
|
|
3
|
+
> Shop tools for shop search, profile checks, sales, products, creators, livestreams, short videos, and ad investment analysis.
|
|
4
|
+
|
|
5
|
+
## Tool summary
|
|
6
|
+
|
|
7
|
+
| Tool | Description |
|
|
8
|
+
|---|---|
|
|
9
|
+
| shop_base_info | Use when the user wants a shop snapshot, store type, rating, or profile. Returns cumulative GMV/units, ranks, age, pr... |
|
|
10
|
+
| shop_creator_analysis | Use when the user wants shop collaborators, creator tiers, or video-vs-live selling structure. Returns creator list a... |
|
|
11
|
+
| shop_data_trends | Use when the user wants recent shop GMV, units, creator, live, video, or active-product trends. Returns daily trends. |
|
|
12
|
+
| shop_investment_analysis | Use when the user asks about shop ads, spend, ROAS, ad GMV, or promoted assets. Returns ad estimates and daily changes. |
|
|
13
|
+
| shop_live_analysis | Use when the user wants shop live performance, shop-live vs affiliate-live structure, or live sessions. |
|
|
14
|
+
| shop_product_analysis | Use when the user wants shop categories, price bands, product mix, or product details. Returns distributions and prod... |
|
|
15
|
+
| shop_rank_top_selling | Use when the user wants top shops in a market or category. Returns shop ranking and ecommerce metrics. |
|
|
16
|
+
| shop_sale_analysis | Use when the user wants shop sales by short video, live, product card, creator, or self-operated channels. Returns ch... |
|
|
17
|
+
| shop_search | Use when the user has no seller_id and provides a shop name, keyword, or region. Returns matching shops. |
|
|
18
|
+
| shop_video_analysis | Use when the user wants shop selling videos, video performance, or ad status. |
|
|
19
|
+
|
|
20
|
+
## Tool details
|
|
21
|
+
|
|
22
|
+
### shop_base_info
|
|
23
|
+
|
|
24
|
+
Use when the user wants a shop snapshot, store type, rating, or profile. Returns cumulative GMV/units, ranks, age, product count, and creator/video/live counts.
|
|
25
|
+
|
|
26
|
+
Example:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
fastmoss call --tool shop_base_info --args '{"filter":{}}' --output mcp
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Parameters:
|
|
33
|
+
|
|
34
|
+
| Name | Type | Required | Description |
|
|
35
|
+
|---|---|---|---|
|
|
36
|
+
| filter | object | yes | Filter parameters. |
|
|
37
|
+
|
|
38
|
+
### shop_creator_analysis
|
|
39
|
+
|
|
40
|
+
Use when the user wants shop collaborators, creator tiers, or video-vs-live selling structure. Returns creator list and distributions.
|
|
41
|
+
|
|
42
|
+
Example:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
fastmoss call --tool shop_creator_analysis --args '{"filter":{}}' --output mcp
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Parameters:
|
|
49
|
+
|
|
50
|
+
| Name | Type | Required | Description |
|
|
51
|
+
|---|---|---|---|
|
|
52
|
+
| filter | object | yes | Filter parameters. |
|
|
53
|
+
| orderby | array | no | Sort options. |
|
|
54
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
55
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
56
|
+
|
|
57
|
+
### shop_data_trends
|
|
58
|
+
|
|
59
|
+
Use when the user wants recent shop GMV, units, creator, live, video, or active-product trends. Returns daily trends.
|
|
60
|
+
|
|
61
|
+
Example:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
fastmoss call --tool shop_data_trends --args '{"filter":{}}' --output mcp
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Parameters:
|
|
68
|
+
|
|
69
|
+
| Name | Type | Required | Description |
|
|
70
|
+
|---|---|---|---|
|
|
71
|
+
| filter | object | yes | Filter parameters. |
|
|
72
|
+
|
|
73
|
+
### shop_investment_analysis
|
|
74
|
+
|
|
75
|
+
Use when the user asks about shop ads, spend, ROAS, ad GMV, or promoted assets. Returns ad estimates and daily changes.
|
|
76
|
+
|
|
77
|
+
Example:
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
fastmoss call --tool shop_investment_analysis --args '{"filter":{}}' --output mcp
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Parameters:
|
|
84
|
+
|
|
85
|
+
| Name | Type | Required | Description |
|
|
86
|
+
|---|---|---|---|
|
|
87
|
+
| filter | object | yes | Filter parameters. |
|
|
88
|
+
|
|
89
|
+
### shop_live_analysis
|
|
90
|
+
|
|
91
|
+
Use when the user wants shop live performance, shop-live vs affiliate-live structure, or live sessions.
|
|
92
|
+
|
|
93
|
+
Example:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
fastmoss call --tool shop_live_analysis --args '{"filter":{}}' --output mcp
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Parameters:
|
|
100
|
+
|
|
101
|
+
| Name | Type | Required | Description |
|
|
102
|
+
|---|---|---|---|
|
|
103
|
+
| filter | object | yes | Filter parameters. |
|
|
104
|
+
| orderby | array | no | Sort options. |
|
|
105
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
106
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
107
|
+
|
|
108
|
+
### shop_product_analysis
|
|
109
|
+
|
|
110
|
+
Use when the user wants shop categories, price bands, product mix, or product details. Returns distributions and product list.
|
|
111
|
+
|
|
112
|
+
Example:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
fastmoss call --tool shop_product_analysis --args '{"filter":{}}' --output mcp
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
Parameters:
|
|
119
|
+
|
|
120
|
+
| Name | Type | Required | Description |
|
|
121
|
+
|---|---|---|---|
|
|
122
|
+
| filter | object | yes | Filter parameters. |
|
|
123
|
+
| orderby | array | no | Sort options. |
|
|
124
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
125
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
126
|
+
|
|
127
|
+
### shop_rank_top_selling
|
|
128
|
+
|
|
129
|
+
Use when the user wants top shops in a market or category. Returns shop ranking and ecommerce metrics.
|
|
130
|
+
|
|
131
|
+
Example:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
fastmoss call --tool shop_rank_top_selling --args '{"filter":{},"orderby":[],"page":1}' --output mcp
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
Parameters:
|
|
138
|
+
|
|
139
|
+
| Name | Type | Required | Description |
|
|
140
|
+
|---|---|---|---|
|
|
141
|
+
| filter | object | no | Filter parameters. |
|
|
142
|
+
| orderby | array | no | Sort options. |
|
|
143
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
144
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
145
|
+
|
|
146
|
+
### shop_sale_analysis
|
|
147
|
+
|
|
148
|
+
Use when the user wants shop sales by short video, live, product card, creator, or self-operated channels. Returns channel_distribution and content_distribution.
|
|
149
|
+
|
|
150
|
+
Example:
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
fastmoss call --tool shop_sale_analysis --args '{"filter":{}}' --output mcp
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
Parameters:
|
|
157
|
+
|
|
158
|
+
| Name | Type | Required | Description |
|
|
159
|
+
|---|---|---|---|
|
|
160
|
+
| filter | object | yes | Filter parameters. |
|
|
161
|
+
|
|
162
|
+
### shop_search
|
|
163
|
+
|
|
164
|
+
Use when the user has no seller_id and provides a shop name, keyword, or region. Returns matching shops.
|
|
165
|
+
|
|
166
|
+
Example:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
fastmoss call --tool shop_search --args '{"filter":{},"keywords":"value","orderby":[]}' --output mcp
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Parameters:
|
|
173
|
+
|
|
174
|
+
| Name | Type | Required | Description |
|
|
175
|
+
|---|---|---|---|
|
|
176
|
+
| filter | object | no | Filter parameters. |
|
|
177
|
+
| keywords | string | no | Search keywords: product, shop, creator, video, live, or category terms. |
|
|
178
|
+
| orderby | array | no | Sort options. |
|
|
179
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
180
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
181
|
+
|
|
182
|
+
### shop_video_analysis
|
|
183
|
+
|
|
184
|
+
Use when the user wants shop selling videos, video performance, or ad status.
|
|
185
|
+
|
|
186
|
+
Example:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
fastmoss call --tool shop_video_analysis --args '{"filter":{}}' --output mcp
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
Parameters:
|
|
193
|
+
|
|
194
|
+
| Name | Type | Required | Description |
|
|
195
|
+
|---|---|---|---|
|
|
196
|
+
| filter | object | yes | Filter parameters. |
|
|
197
|
+
| orderby | array | no | Sort options. |
|
|
198
|
+
| page | integer | no | Page number. Default 1, max 10. |
|
|
199
|
+
| pagesize | integer | no | Page size. Default 10, max 10. |
|
|
200
|
+
|