@fastmoss/cli 0.1.3 → 0.1.5
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 +3490 -0
- package/skills/fastmoss-cli/references/cli.md +70 -0
- package/skills/fastmoss-cli/references/tool-call.md +102 -0
- package/skills/fastmoss-cli/references/tools-advertising.md +48 -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 +25 -0
|
@@ -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
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# FastMoss CLI Tool Catalog
|
|
2
|
+
|
|
3
|
+
> Generated from the static FastMoss tool list. Use the category files below as the tool catalog for `fastmoss call`.
|
|
4
|
+
|
|
5
|
+
## How to call tools
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
fastmoss call --tool <tool_name> --args '<json>' --output mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Use `fastmoss tools --search <tool_name>` only when the installed CLI and account can access live metadata. The static catalog files below are the packaged fallback and release-time reference.
|
|
12
|
+
|
|
13
|
+
## Categories
|
|
14
|
+
|
|
15
|
+
| Category | File | Tools | Use for |
|
|
16
|
+
|---|---|---:|---|
|
|
17
|
+
| Advertising Tools | [Advertising Tools](tools-advertising.md) | 2 | Advertising tools for ad creatives, ad spend, ROAS, engagement, and paid-traffic performance analysis. |
|
|
18
|
+
| Creator Tools | [Creator Tools](tools-creator.md) | 10 | Creator tools for creator search, profile checks, ecommerce performance, audience fit, trends, videos, and partnership evaluation. |
|
|
19
|
+
| Product Tools | [Product Tools](tools-product.md) | 12 | Product tools for product search, details, sales trends, creator mix, videos, SKUs, reviews, and ad investment analysis. |
|
|
20
|
+
| Shop Tools | [Shop Tools](tools-shop.md) | 10 | Shop tools for shop search, profile checks, sales, products, creators, livestreams, short videos, and ad investment analysis. |
|
|
21
|
+
| Market Insight Tools | [Market Insight Tools](tools-market.md) | 3 | Market insight tools for category size, growth, competition, rankings, opportunities, and creator sales matrix analysis. |
|
|
22
|
+
| Auxiliary and Knowledge Base Tools | [Auxiliary and Knowledge Base Tools](tools-auxiliary-knowledge.md) | 10 | Auxiliary and knowledge base tools for category keyword matching, FastMoss documentation, detail-page URL rules, live/video analysis, and tools outside the main business prefixes. |
|
|
23
|
+
|
|
24
|
+
Read only the category file that matches the user's task before calling a tool.
|
|
25
|
+
|