pabal-store-api-mcp 1.1.0 → 1.2.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,8 +1,8 @@
1
1
  ![Cover](public/cover.gif)
2
2
 
3
- [![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=pabal-store-api-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInBhYmFsLXN0b3JlLWFwaS1tY3AiXX0%3D)
3
+ [![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=pabal-store-api-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInBhYmFsLW1jcCJdfQ%3D%3D)
4
4
 
5
- [![Pabal Web MCP (English)](https://img.shields.io/badge/Pabal%20Web%20MCP-English-blue)](https://pabal.quartz.best/docs/en-US/pabal-web-mcp/README) [![Pabal Web MCP (한국어)](https://img.shields.io/badge/Pabal%20Web%20MCP-한국어-green)](https://pabal.quartz.best/docs/ko-KR/pabal-web-mcp/README)
5
+ [![Pabal Web MCP (English)](https://img.shields.io/badge/Pabal%20Web%20MCP-English-blue)](https://pabal.quartz.best/docs/en-US/pabal-resource-mcp/README) [![Pabal Web MCP (한국어)](https://img.shields.io/badge/Pabal%20Web%20MCP-한국어-green)](https://pabal.quartz.best/docs/ko-KR/pabal-resource-mcp/README)
6
6
 
7
7
  # MCP server for App Store Connect & Play Console API
8
8
 
@@ -26,11 +26,11 @@ npm install -g pabal-store-api-mcp
26
26
  1. Create config directory:
27
27
 
28
28
  ```bash
29
- mkdir -p ~/.config/pabal-store-api-mcp
30
- chmod 700 ~/.config/pabal-store-api-mcp
29
+ mkdir -p ~/.config/pabal-mcp
30
+ chmod 700 ~/.config/pabal-mcp
31
31
  ```
32
32
 
33
- 2. Add your credentials to `~/.config/pabal-store-api-mcp/config.json`:
33
+ 2. Add your credentials to `~/.config/pabal-mcp/config.json`:
34
34
  - **App Store Connect**: API key (`.p8` file) with `issuerId` and `keyId`
35
35
  - **Google Play**: Service account JSON key
36
36
 
@@ -58,8 +58,8 @@ chmod 700 ~/.config/pabal-store-api-mcp
58
58
 
59
59
  ## Documentation
60
60
 
61
- 📖 **[Pabal Web MCP Documentation (English)](https://pabal.quartz.best/docs/en-US/pabal-web-mcp/README)**
62
- 📖 **[Pabal Web MCP 문서 (한국어)](https://pabal.quartz.best/docs/ko-KR/pabal-web-mcp/README)**
61
+ 📖 **[Pabal Web MCP Documentation (English)](https://pabal.quartz.best/docs/en-US/pabal-resource-mcp/README)**
62
+ 📖 **[Pabal Web MCP 문서 (한국어)](https://pabal.quartz.best/docs/ko-KR/pabal-resource-mcp/README)**
63
63
 
64
64
  <br>
65
65
 
package/dist/src/index.js CHANGED
@@ -15,7 +15,7 @@ import { handleCheckLatestVersions } from "./tools/release/check-versions.js";
15
15
  // MCP config sets cwd to project root, so we don't need to chdir
16
16
  // Just verify we're in the right place
17
17
  console.error(`[MCP] 📂 Working directory: ${process.cwd()}`);
18
- const server = new McpServer({ name: "pabal-mcp", version: "0.0.1" }, {
18
+ const server = new McpServer({ name: "pabal-store-api-mcp", version: "0.0.1" }, {
19
19
  instructions: "Provides tools for App Store/Play Store ASO.",
20
20
  });
21
21
  // ============================================================================
@@ -258,12 +258,12 @@ registerToolWithInfo("release-update-notes", {
258
258
  }),
259
259
  }, handleUpdateNotes, "Release Management");
260
260
  async function main() {
261
- console.error("[MCP] 🚀 Starting pabal-mcp server...");
261
+ console.error("[MCP] 🚀 Starting pabal-store-api-mcp server...");
262
262
  const transport = new StdioServerTransport();
263
263
  await server.connect(transport);
264
264
  console.error("[MCP] ✅ Server connected and ready");
265
265
  }
266
- // Exported for CLI entrypoint (bin/pabal-mcp.js) so npx can start the server
266
+ // Exported for CLI entrypoint (bin/pabal-store-api-mcp.js) so npx can start the server
267
267
  export async function startServer() {
268
268
  return main();
269
269
  }
@@ -118,7 +118,7 @@ export function loadConfig() {
118
118
  if (!config) {
119
119
  const configPath = getConfigPath();
120
120
  throw new ConfigError(`Config file not found: ${configPath}\n` +
121
- `Please create ~/.config/pabal-store-api-mcp/config.json`, { status: HTTP_STATUS.NOT_FOUND, code: ERROR_CODES.CONFIG_NOT_FOUND });
121
+ `Please create ~/.config/pabal-mcp/config.json`, { status: HTTP_STATUS.NOT_FOUND, code: ERROR_CODES.CONFIG_NOT_FOUND });
122
122
  }
123
123
  try {
124
124
  const result = {};
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pabal-store-api-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "MCP server for App Store / Play Store ASO workflows",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
7
7
  "type": "module",
8
8
  "bin": {
9
- "pabal-mcp": "./bin/pabal-mcp.js"
9
+ "pabal-store-api-mcp": "./bin/pabal-store-api-mcp.js"
10
10
  },
11
11
  "files": [
12
12
  "dist/src",