pabal-resource-mcp 1.4.8
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 +74 -0
- package/dist/bin/mcp-server.d.ts +1 -0
- package/dist/bin/mcp-server.js +3994 -0
- package/dist/browser.d.ts +15 -0
- package/dist/browser.js +60 -0
- package/dist/chunk-4G7O7LKL.js +1045 -0
- package/dist/chunk-A7KGUQPB.js +1058 -0
- package/dist/chunk-AM6RGDD4.js +1001 -0
- package/dist/chunk-BOWRBVVV.js +716 -0
- package/dist/chunk-DLCIXAUB.js +6 -0
- package/dist/chunk-FDI7WF45.js +1058 -0
- package/dist/chunk-FXCHLO7O.js +351 -0
- package/dist/chunk-MWXNTV3M.js +1001 -0
- package/dist/chunk-OCOFNMN2.js +1058 -0
- package/dist/chunk-W62HB2ZL.js +355 -0
- package/dist/chunk-WNIH5KWA.js +1028 -0
- package/dist/chunk-YJWGBO7W.js +952 -0
- package/dist/chunk-YPDLNPLX.js +1058 -0
- package/dist/chunk-ZDL4PKBE.js +1058 -0
- package/dist/index.d.ts +52 -0
- package/dist/index.js +76 -0
- package/dist/locale-converter-B_NCFuS8.d.ts +798 -0
- package/package.json +76 -0
package/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# pabal-web-mcp
|
|
2
|
+
|
|
3
|
+
MCP server for ASO ↔ Web SEO data conversion.
|
|
4
|
+
|
|
5
|
+
Build synced websites from App Store Connect and Google Play Console data.
|
|
6
|
+
|
|
7
|
+
> 💡 **Example**: [labs.quartz.best](https://labs.quartz.best/)
|
|
8
|
+
|
|
9
|
+
[](https://pabal.quartz.best/docs/en-US/pabal-mcp/README) [](https://pabal.quartz.best/docs/ko-KR/pabal-mcp/README)
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install pabal-web-mcp
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**Requirements:** Node.js >= 18, [pabal-mcp](https://github.com/quartz-labs-dev/pabal-mcp)
|
|
18
|
+
|
|
19
|
+
## MCP Configuration
|
|
20
|
+
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"mcpServers": {
|
|
24
|
+
"pabal-web-mcp": {
|
|
25
|
+
"command": "npx",
|
|
26
|
+
"args": ["-y", "pabal-web-mcp"]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
For keyword research, add `mcp-appstore`:
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"mcp-appstore": {
|
|
37
|
+
"command": "node",
|
|
38
|
+
"args": ["/PATH/TO/external-tools/mcp-appstore/server.js"],
|
|
39
|
+
"cwd": "/PATH/TO/external-tools/mcp-appstore"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
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.
|
|
63
|
+
|
|
64
|
+
## License
|
|
65
|
+
|
|
66
|
+
MIT
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Pabal Web
|
|
71
|
+
|
|
72
|
+
[](https://pabal.quartz.best/)
|
|
73
|
+
|
|
74
|
+
Unified ASO + SEO management interface. [Visit →](https://pabal.quartz.best/)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|