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 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
+ [![Documentation](https://img.shields.io/badge/docs-English-blue)](https://pabal.quartz.best/docs/en-US/pabal-mcp/README) [![한국어](https://img.shields.io/badge/docs-한국어-green)](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
+ [![Pabal Web](public/pabal-web.png)](https://pabal.quartz.best/)
73
+
74
+ Unified ASO + SEO management interface. [Visit →](https://pabal.quartz.best/)
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node