pabal-web-mcp 0.1.5 → 1.0.0

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 CHANGED
@@ -1,6 +1,10 @@
1
1
  # pabal-web-mcp
2
2
 
3
- MCP (Model Context Protocol) server for ASO (App Store Optimization) data management with shared types and utilities.
3
+ MCP (Model Context Protocol) server for bidirectional conversion between ASO (App Store Optimization) and web SEO data.
4
+
5
+ This library enables seamless reuse of ASO data for web SEO purposes, allowing you to convert ASO metadata directly into web SEO content and vice versa.
6
+
7
+ [![한국어 docs](https://img.shields.io/badge/docs-Korean-green)](./i18n/README.ko.md)
4
8
 
5
9
  ## 🛠️ MCP Client Installation
6
10
 
@@ -12,18 +16,6 @@ MCP (Model Context Protocol) server for ASO (App Store Optimization) data manage
12
16
  > [!TIP]
13
17
  > If you repeatedly do ASO/store tasks, add a client rule like "always use pabal-web-mcp" so the MCP server auto-invokes without typing it every time.
14
18
 
15
- ### Global install (recommended)
16
-
17
- ```bash
18
- npm install -g pabal-web-mcp
19
-
20
- # or
21
-
22
- yarn global add pabal-web-mcp
23
- ```
24
-
25
- Install globally first for fastest starts and to avoid npm download issues (proxy/firewall/offline). You can still use `npx -y pabal-web-mcp`, but global install is recommended. After global install, set your MCP config to `command: "pabal-web-mcp"` (no `npx` needed).
26
-
27
19
  <details>
28
20
  <summary><b>Install in Cursor</b></summary>
29
21
 
@@ -235,6 +227,8 @@ console.log(asoData.googlePlay?.title);
235
227
 
236
228
  ## Supported Locales
237
229
 
230
+ Supports all languages supported by each store.
231
+
238
232
  | Unified | App Store | Google Play |
239
233
  | ------- | --------- | ----------- |
240
234
  | en-US | en-US | en-US |
@@ -251,3 +245,17 @@ console.log(asoData.googlePlay?.title);
251
245
  ## License
252
246
 
253
247
  MIT
248
+
249
+ ---
250
+
251
+ <br>
252
+
253
+ ## 🌐 Pabal Web
254
+
255
+ Want to manage ASO and SEO together? Check out **Pabal Web**.
256
+
257
+ [![Pabal Web](public/pabal-web.png)](https://pabal.quartz.best/)
258
+
259
+ **Pabal Web** is a Next.js-based web interface that provides a complete solution for unified management of ASO, SEO, Google Search Console indexing, and more.
260
+
261
+ 👉 [Visit Pabal Web](https://pabal.quartz.best/)
@@ -15,7 +15,7 @@ import {
15
15
  saveAsoToAsoDir,
16
16
  unifiedToAppStore,
17
17
  unifiedToGooglePlay
18
- } from "../chunk-ZDL4PKBE.js";
18
+ } from "../chunk-OCOFNMN2.js";
19
19
 
20
20
  // src/bin/mcp-server.ts
21
21
  import { Server } from "@modelcontextprotocol/sdk/server/index.js";
@@ -418,9 +418,9 @@ function prepareAsoDataForPush(slug, configData) {
418
418
  }
419
419
 
420
420
  // src/tools/utils/public-to-aso/save-raw-aso-data.util.ts
421
- function saveRawAsoData(slug, asoData, options) {
422
- const rootDir = options?.rootDir ?? getPushDataDir();
423
- saveAsoToAsoDir(slug, asoData, { rootDir });
421
+ function saveRawAsoData(slug, asoData) {
422
+ const rootDir = getPushDataDir();
423
+ saveAsoToAsoDir(slug, asoData);
424
424
  const localeCounts = {};
425
425
  if (asoData.googlePlay) {
426
426
  const googlePlayData = asoData.googlePlay;
@@ -521,8 +521,8 @@ var jsonSchema2 = toJsonSchema2(publicToAsoInputSchema, {
521
521
  $refStrategy: "none"
522
522
  });
523
523
  var inputSchema2 = jsonSchema2.definitions?.PublicToAsoInput || jsonSchema2;
524
- async function downloadScreenshotsToAsoDir(slug, asoData, options) {
525
- const rootDir = options?.rootDir ?? getPushDataDir();
524
+ async function downloadScreenshotsToAsoDir(slug, asoData) {
525
+ const rootDir = getPushDataDir();
526
526
  const productStoreRoot = path4.join(rootDir, "products", slug, "store");
527
527
  if (asoData.googlePlay) {
528
528
  let googlePlayData = asoData.googlePlay;
@@ -771,10 +771,8 @@ ${JSON.stringify(
771
771
  ]
772
772
  };
773
773
  }
774
- saveRawAsoData(slug, storeData, { rootDir: pushDataRoot });
775
- await downloadScreenshotsToAsoDir(slug, configData, {
776
- rootDir: pushDataRoot
777
- });
774
+ saveRawAsoData(slug, storeData);
775
+ await downloadScreenshotsToAsoDir(slug, configData);
778
776
  const localeCounts = {};
779
777
  if (storeData.googlePlay) {
780
778
  const googlePlayData = storeData.googlePlay;