@akoskomuves/appstoreconnect-mcp 0.1.1 → 0.1.2
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/CHANGELOG.md +6 -0
- package/README.md +18 -9
- package/data/apple-music-prices.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# appstoreconnect-mcp
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- abee8e4: Apple Music index: update BGR (Bulgaria) from BGN to EUR. Bulgaria adopted the euro and the App Store + Apple Music both bill in EUR there now. Previously BGR showed up as a `currency-mismatch` row in PPP proposals; with this fix it's part of the regular EUR cluster (factor 1.000 vs USA, target = anchor price).
|
|
8
|
+
|
|
3
9
|
## 0.1.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -126,15 +126,24 @@ Then ask Claude: *"Rebalance my subscription prices using the ppp-rebalance skil
|
|
|
126
126
|
|
|
127
127
|
## Roadmap
|
|
128
128
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
129
|
+
What we shipped is roughly 10% of the App Store Connect API. The rest is fertile ground for LLM-driven ops because so much App Store work is judgment-heavy text — translations, review responses, pricing positioning — that a model can draft and a human approves.
|
|
130
|
+
|
|
131
|
+
| Phase | Domain | What it unlocks |
|
|
132
|
+
| --- | --- | --- |
|
|
133
|
+
| **v0.1** ✓ | Apps · subscriptions · subscription pricing · PPP rebalance | Schedule per-territory price changes by purchasing power. |
|
|
134
|
+
| **v0.2** | App pricing (non-subscription) · IAP CRUD + pricing · introductory offers · promotional offers | One-shot PPP rebalance for *every* paid surface, not just subs. |
|
|
135
|
+
| **v0.3** | TestFlight: builds · beta groups · beta testers · build localizations · beta app review | "Invite these 30 testers to the new build with this test note in EN/ES/JA." |
|
|
136
|
+
| **v0.4** | App version localizations · subscription localizations · IAP localizations | The biggest LLM win. Translate release notes into 35 locales using existing localizations as voice reference, present diff, push on approval. |
|
|
137
|
+
| **v0.5** | Customer reviews (read · respond · filter by sentiment/version) | "Draft a response to every 1-star review on the latest version that mentions the export bug. Show me before posting." |
|
|
138
|
+
| **v0.6** | Sales/trends · finance reports · app analytics | "Why did MRR drop in Brazil last week? Compare to the rebalance activation date." |
|
|
139
|
+
| **v0.7** | EU DMA: external purchase links · alternative payment systems · compliance reports | Niche but valuable for any app opting out of Apple's commerce in the EU. |
|
|
140
|
+
| **v0.8+** | Real-FX for currency-mismatch territories · screenshot uploads · ASO keyword analysis · custom product pages · A/B tests | Polish + advanced surfaces. |
|
|
141
|
+
|
|
142
|
+
**Out of scope** (Fastlane / Xcode already do these well): provisioning profiles, certificates, devices, capabilities, Game Center config.
|
|
143
|
+
|
|
144
|
+
**Positioning:** the LLM companion for App Store Connect ops. Fastlane is for the build/release pipeline; this is for the post-release knowledge work — translation, pricing, customer feedback, analytics.
|
|
145
|
+
|
|
146
|
+
Each new domain is one file under `src/domains/<name>.ts` plus a `register*` call in `src/index.ts`. Contributions welcome — see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
138
147
|
|
|
139
148
|
## Develop
|
|
140
149
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$comment": "Apple Music Individual plan price per territory. Used as a Purchasing Power Parity reference: target_local = base_anchor_price * (apple_music_local / apple_music_anchor). Refresh by visiting apple.com/<country-slug>/apple-music/. Territories not listed here are skipped by ppp_compute_proposal.",
|
|
3
|
-
"snapshot": "2026-05-
|
|
3
|
+
"snapshot": "2026-05-10",
|
|
4
4
|
"anchor": "USA",
|
|
5
5
|
"prices": [
|
|
6
6
|
{ "territory": "USA", "currency": "USD", "individualPrice": 10.99 },
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
{ "territory": "CYP", "currency": "EUR", "individualPrice": 10.99 },
|
|
43
43
|
{ "territory": "MLT", "currency": "EUR", "individualPrice": 10.99 },
|
|
44
44
|
{ "territory": "HRV", "currency": "EUR", "individualPrice": 10.99 },
|
|
45
|
-
{ "territory": "BGR", "currency": "
|
|
45
|
+
{ "territory": "BGR", "currency": "EUR", "individualPrice": 10.99 },
|
|
46
46
|
{ "territory": "POL", "currency": "PLN", "individualPrice": 24.99 },
|
|
47
47
|
{ "territory": "ROU", "currency": "RON", "individualPrice": 24.99 },
|
|
48
48
|
{ "territory": "HUN", "currency": "HUF", "individualPrice": 1490 },
|