pabal-web-mcp 1.3.3 → 1.3.4

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.
@@ -2488,12 +2488,14 @@ function buildTemplate({
2488
2488
  plan: {
2489
2489
  steps: [
2490
2490
  "Start mcp-appstore server (node server.js in external-tools/mcp-appstore).",
2491
- "Confirm app IDs/locales: get_app_details(appId from config/registered-apps) to lock country/lang and competitors.",
2492
- "Discover competitors: search_app(term=seed keyword), get_similar_apps(appId=known competitor).",
2493
- "Collect candidates: suggest_keywords_by_seeds/by_category/by_similarity/by_competition/by_search + suggest_keywords_by_apps(apps=[top competitors]).",
2491
+ "Confirm app IDs/locales: get_app_details(appId from config/registered-apps) to lock country/lang and 3\u20135 competitors.",
2492
+ "Discover competitors: search_app(term=seed keyword, num=10\u201320), get_similar_apps(appId=top competitor, num=10).",
2493
+ "Collect candidates (all of these, num=20\u201330): 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.",
2496
- "If keywordSuggestions/similar/reviews are sparse, rerun calls (add more competitors/seeds) until you have 10\u201315 strong keywords."
2495
+ "Context check: analyze_reviews (num=100\u2013200) and fetch_reviews (num=50\u2013100) 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.",
2497
+ "For any recommended keyword without scores, rerun get_keyword_scores to fill traffic/difficulty.",
2498
+ "Keep rationale/nextActions in English by default unless you intentionally localize them."
2497
2499
  ],
2498
2500
  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)."
2499
2501
  },
@@ -2698,16 +2700,16 @@ Context around ${pos}: ${context}`
2698
2700
  `2) Confirm IDs/locales: get_app_details(appId from config/registered-apps) to lock locale/country and competitor list.`
2699
2701
  );
2700
2702
  lines.push(
2701
- `3) Discover apps: search_app(term=seed, platform=${platform}, country=${resolvedCountry}); get_similar_apps(appId=known competitor).`
2703
+ `3) Discover apps: search_app(term=seed, num=10-20, platform=${platform}, country=${resolvedCountry}); get_similar_apps(appId=top competitor, num=10).`
2702
2704
  );
2703
2705
  lines.push(
2704
- `4) Expand keywords: suggest_keywords_by_seeds/by_category/by_similarity/by_competition/by_search + suggest_keywords_by_apps(apps=[top competitors]).`
2706
+ `4) Expand keywords (num=20-30 each): suggest_keywords_by_seeds/by_category/by_similarity/by_competition/by_search + suggest_keywords_by_apps(apps=[top competitors]).`
2705
2707
  );
2706
2708
  lines.push(
2707
2709
  `5) Score shortlist: get_keyword_scores for 15\u201330 candidates (note: scores are heuristic per README).`
2708
2710
  );
2709
2711
  lines.push(
2710
- `6) Context check: analyze_reviews and fetch_reviews on top apps to harvest native phrasing; keep snippets for improve-public.`
2712
+ `6) Context check: analyze_reviews (num=100-200) and fetch_reviews (num=50-100) on top apps to harvest native phrasing; keep snippets for improve-public.`
2711
2713
  );
2712
2714
  lines.push(
2713
2715
  `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>)`
@@ -2715,6 +2717,9 @@ Context around ${pos}: ${context}`
2715
2717
  lines.push(
2716
2718
  `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.`
2717
2719
  );
2720
+ lines.push(
2721
+ `9) If any recommended keywords lack scores, rerun get_keyword_scores for those items. Keep rationale/nextActions in English by default unless you explicitly want them localized.`
2722
+ );
2718
2723
  if (fileAction) {
2719
2724
  lines.push(`File: ${fileAction} at ${outputPath}`);
2720
2725
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pabal-web-mcp",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "type": "module",
5
5
  "description": "MCP server for ASO data management with shared types and utilities",
6
6
  "author": "skyu",