pabal-web-mcp 1.3.2 → 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,13 +2488,16 @@ 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."
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."
2496
2499
  ],
2497
- note: "Run per platform/country. Save raw tool outputs plus curated top keywords."
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)."
2498
2501
  },
2499
2502
  data: {
2500
2503
  raw: {
@@ -2516,7 +2519,7 @@ function buildTemplate({
2516
2519
  summary: {
2517
2520
  recommendedKeywords: [],
2518
2521
  rationale: "",
2519
- nextActions: "Feed top 10\u201315 into improve-public Stage 1."
2522
+ nextActions: "Feed 10\u201315 mixed keywords (core/mid/longtail) into improve-public Stage 1."
2520
2523
  }
2521
2524
  }
2522
2525
  };
@@ -2697,19 +2700,25 @@ Context around ${pos}: ${context}`
2697
2700
  `2) Confirm IDs/locales: get_app_details(appId from config/registered-apps) to lock locale/country and competitor list.`
2698
2701
  );
2699
2702
  lines.push(
2700
- `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).`
2701
2704
  );
2702
2705
  lines.push(
2703
- `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]).`
2704
2707
  );
2705
2708
  lines.push(
2706
2709
  `5) Score shortlist: get_keyword_scores for 15\u201330 candidates (note: scores are heuristic per README).`
2707
2710
  );
2708
2711
  lines.push(
2709
- `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.`
2710
2713
  );
2711
2714
  lines.push(
2712
- `7) Save all raw responses + your final top 10\u201315 keywords to: ${outputPath} (structure mirrors .aso/pullData/.aso/pushData under products/<slug>/locales/<locale>)`
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>)`
2716
+ );
2717
+ lines.push(
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.`
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.`
2713
2722
  );
2714
2723
  if (fileAction) {
2715
2724
  lines.push(`File: ${fileAction} at ${outputPath}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pabal-web-mcp",
3
- "version": "1.3.2",
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",