pabal-web-mcp 1.3.2 → 1.3.3
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/dist/bin/mcp-server.js +8 -4
- package/package.json +1 -1
package/dist/bin/mcp-server.js
CHANGED
|
@@ -2492,9 +2492,10 @@ function buildTemplate({
|
|
|
2492
2492
|
"Discover competitors: search_app(term=seed keyword), get_similar_apps(appId=known competitor).",
|
|
2493
2493
|
"Collect candidates: suggest_keywords_by_seeds/by_category/by_similarity/by_competition/by_search + suggest_keywords_by_apps(apps=[top competitors]).",
|
|
2494
2494
|
"Score shortlist: get_keyword_scores for 15\u201330 candidates per platform/country.",
|
|
2495
|
-
"Context check: analyze_reviews and fetch_reviews on top apps for language/tone cues."
|
|
2495
|
+
"Context check: analyze_reviews and fetch_reviews on top apps for language/tone cues.",
|
|
2496
|
+
"If keywordSuggestions/similar/reviews are sparse, rerun calls (add more competitors/seeds) until you have 10\u201315 strong keywords."
|
|
2496
2497
|
],
|
|
2497
|
-
note: "Run per platform/country. Save raw tool outputs plus curated top keywords."
|
|
2498
|
+
note: "Run per platform/country. Save raw tool outputs plus curated top keywords (target 10\u201315 per locale: 2\u20133 high-traffic core, 4\u20136 mid-competition, 4\u20136 longtail)."
|
|
2498
2499
|
},
|
|
2499
2500
|
data: {
|
|
2500
2501
|
raw: {
|
|
@@ -2516,7 +2517,7 @@ function buildTemplate({
|
|
|
2516
2517
|
summary: {
|
|
2517
2518
|
recommendedKeywords: [],
|
|
2518
2519
|
rationale: "",
|
|
2519
|
-
nextActions: "Feed
|
|
2520
|
+
nextActions: "Feed 10\u201315 mixed keywords (core/mid/longtail) into improve-public Stage 1."
|
|
2520
2521
|
}
|
|
2521
2522
|
}
|
|
2522
2523
|
};
|
|
@@ -2709,7 +2710,10 @@ Context around ${pos}: ${context}`
|
|
|
2709
2710
|
`6) Context check: analyze_reviews and fetch_reviews on top apps to harvest native phrasing; keep snippets for improve-public.`
|
|
2710
2711
|
);
|
|
2711
2712
|
lines.push(
|
|
2712
|
-
`7) Save all raw responses + your final
|
|
2713
|
+
`7) Save all raw responses + your final 10\u201315 keywords (mix of core/high-traffic, mid, longtail) to: ${outputPath} (structure mirrors .aso/pullData/.aso/pushData under products/<slug>/locales/<locale>)`
|
|
2714
|
+
);
|
|
2715
|
+
lines.push(
|
|
2716
|
+
`8) If keywordSuggestions/similarApps/reviews are still empty or <10 solid candidates, add more competitors/seeds and rerun the calls above until you reach 10\u201315 strong keywords.`
|
|
2713
2717
|
);
|
|
2714
2718
|
if (fileAction) {
|
|
2715
2719
|
lines.push(`File: ${fileAction} at ${outputPath}`);
|