pabal-web-mcp 1.4.7 → 1.4.9
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 +43 -93
- package/dist/bin/mcp-server.js +717 -700
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,109 +1,65 @@
|
|
|
1
1
|
# pabal-web-mcp
|
|
2
2
|
|
|
3
|
-
MCP
|
|
3
|
+
MCP server for ASO ↔ Web SEO data conversion.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Build synced websites from App Store Connect and Google Play Console data.
|
|
6
6
|
|
|
7
|
-
> 💡 **Example**:
|
|
7
|
+
> 💡 **Example**: [labs.quartz.best](https://labs.quartz.best/)
|
|
8
8
|
|
|
9
|
-
[](https://pabal.quartz.best/docs/en-US/pabal-mcp/README) [](https://pabal.quartz.best/docs/ko-KR/pabal-mcp/README)
|
|
10
10
|
|
|
11
|
-
##
|
|
12
|
-
|
|
13
|
-
### Requirements
|
|
14
|
-
|
|
15
|
-
- Node.js >= 18
|
|
16
|
-
- [pabal-mcp](https://github.com/quartz-labs-dev/pabal-mcp) must be installed and configured
|
|
17
|
-
|
|
18
|
-
### Install as Library
|
|
19
|
-
|
|
20
|
-
Install this library in your website project:
|
|
11
|
+
## Installation
|
|
21
12
|
|
|
22
13
|
```bash
|
|
23
14
|
npm install pabal-web-mcp
|
|
24
|
-
# or
|
|
25
|
-
yarn add pabal-web-mcp
|
|
26
|
-
# or
|
|
27
|
-
pnpm add pabal-web-mcp
|
|
28
15
|
```
|
|
29
16
|
|
|
30
|
-
|
|
17
|
+
**Requirements:** Node.js >= 18, [pabal-mcp](https://github.com/quartz-labs-dev/pabal-mcp)
|
|
31
18
|
|
|
32
|
-
|
|
19
|
+
## MCP Configuration
|
|
33
20
|
|
|
34
|
-
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"mcpServers": {
|
|
24
|
+
"pabal-web-mcp": {
|
|
25
|
+
"command": "npx",
|
|
26
|
+
"args": ["-y", "pabal-web-mcp"]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
35
31
|
|
|
36
|
-
|
|
32
|
+
For keyword research, add `mcp-appstore`:
|
|
37
33
|
|
|
38
34
|
```json
|
|
39
35
|
{
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"privateKeyPath": "./app-store-key.p8"
|
|
45
|
-
},
|
|
46
|
-
"googlePlay": {
|
|
47
|
-
"serviceAccountKeyPath": "./google-play-service-account.json"
|
|
36
|
+
"mcp-appstore": {
|
|
37
|
+
"command": "node",
|
|
38
|
+
"args": ["/PATH/TO/external-tools/mcp-appstore/server.js"],
|
|
39
|
+
"cwd": "/PATH/TO/external-tools/mcp-appstore"
|
|
48
40
|
}
|
|
49
41
|
}
|
|
50
42
|
```
|
|
51
43
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
|
65
|
-
|
|
|
66
|
-
| `aso-to-public`
|
|
67
|
-
| `
|
|
68
|
-
| `
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
| `create-blog-html` | Generate static HTML blog posts with BLOG_META headers |
|
|
72
|
-
|
|
73
|
-
### Using external keyword MCP ([appreply-co/mcp-appstore](https://github.com/appreply-co/mcp-appstore))
|
|
74
|
-
|
|
75
|
-
1. Install deps in the existing clone: `cd external-tools/mcp-appstore && npm install`
|
|
76
|
-
2. Run server: `node server.js` (same cwd; `npm start` also works). If your MCP client allows, let the LLM start this process before keyword research and stop it after; otherwise start/stop it manually.
|
|
77
|
-
3. Register in your MCP client (example):
|
|
78
|
-
```json
|
|
79
|
-
{
|
|
80
|
-
"mcpServers": {
|
|
81
|
-
"mcp-appstore": {
|
|
82
|
-
"command": "node",
|
|
83
|
-
"args": ["/ABSOLUTE/PATH/TO/pabal-web-mcp/external-tools/mcp-appstore/server.js"],
|
|
84
|
-
"cwd": "/ABSOLUTE/PATH/TO/pabal-web-mcp/external-tools/mcp-appstore"
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
```
|
|
89
|
-
4. Use it with `keyword-research` (saves to `.aso/keywordResearch/...`) before `improve-public` to supply keyword data.
|
|
90
|
-
|
|
91
|
-
### Supported Locales
|
|
92
|
-
|
|
93
|
-
Supports all languages supported by each store.
|
|
94
|
-
|
|
95
|
-
| Unified | App Store | Google Play |
|
|
96
|
-
| ------- | --------- | ----------- |
|
|
97
|
-
| en-US | en-US | en-US |
|
|
98
|
-
| ko-KR | ko | ko-KR |
|
|
99
|
-
| ja-JP | ja | ja-JP |
|
|
100
|
-
| zh-CN | zh-Hans | zh-CN |
|
|
101
|
-
| zh-TW | zh-Hant | zh-TW |
|
|
102
|
-
| de-DE | de-DE | de-DE |
|
|
103
|
-
| fr-FR | fr-FR | fr-FR |
|
|
104
|
-
| es-ES | es-ES | es-ES |
|
|
105
|
-
| pt-BR | pt-BR | pt-BR |
|
|
106
|
-
| ... | ... | ... |
|
|
44
|
+
## Configuration
|
|
45
|
+
|
|
46
|
+
Set `dataDir` in `~/.config/pabal-mcp/config.json`:
|
|
47
|
+
|
|
48
|
+
```json
|
|
49
|
+
{
|
|
50
|
+
"dataDir": "/path/to/pabal-web"
|
|
51
|
+
}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Tools
|
|
55
|
+
|
|
56
|
+
| Category | Tools |
|
|
57
|
+
| -------- | -------------------------------------------------------------------------------------- |
|
|
58
|
+
| ASO | `aso-to-public`, `public-to-aso`, `improve-public`, `validate-aso`, `keyword-research` |
|
|
59
|
+
| Apps | `init-project`, `search-app` |
|
|
60
|
+
| Content | `create-blog-html` |
|
|
61
|
+
|
|
62
|
+
See [documentation](./docs/en-US/README.md) for details.
|
|
107
63
|
|
|
108
64
|
## License
|
|
109
65
|
|
|
@@ -111,14 +67,8 @@ MIT
|
|
|
111
67
|
|
|
112
68
|
---
|
|
113
69
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
## 🌐 Pabal Web
|
|
117
|
-
|
|
118
|
-
Want to manage ASO and SEO together? Check out **Pabal Web**.
|
|
70
|
+
## Pabal Web
|
|
119
71
|
|
|
120
72
|
[](https://pabal.quartz.best/)
|
|
121
73
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
👉 [Visit Pabal Web](https://pabal.quartz.best/)
|
|
74
|
+
Unified ASO + SEO management interface. [Visit →](https://pabal.quartz.best/)
|