storeconfig 0.0.24 → 1.0.1
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 +8 -14
- package/dist/cli.js +461 -129
- package/dist/cli.js.map +4 -4
- package/dist/mcp.js +27 -42
- package/dist/mcp.js.map +3 -3
- package/package.json +3 -6
- package/dist/mcp.mjs +0 -238
- package/dist/mcp.mjs.map +0 -7
package/README.md
CHANGED
|
@@ -46,23 +46,18 @@ npx storeconfig --help
|
|
|
46
46
|
|
|
47
47
|
## 🔧 Setup
|
|
48
48
|
|
|
49
|
-
### 1.
|
|
50
|
-
|
|
51
|
-
First, sign up at [storeconfig.com](https://storeconfig.com) to get your Secret Key.
|
|
52
|
-
|
|
53
|
-
### 2. Authentication
|
|
49
|
+
### 1. Authentication
|
|
54
50
|
|
|
55
51
|
Set up your App Store Connect API credentials:
|
|
56
52
|
|
|
57
53
|
```bash
|
|
58
|
-
# Configure StoreConfig with the StoreConfig Secret Key
|
|
59
|
-
storeconfig configure
|
|
60
|
-
|
|
61
54
|
# Add Apple credentials
|
|
62
55
|
# The command will prompt you for Issuer ID and Key ID
|
|
63
56
|
storeconfig apple --key-path /path/to/your/AuthKey_XXXXX.p8
|
|
64
57
|
```
|
|
65
58
|
|
|
59
|
+
`fetch`, `set-price`, `compare-price`, and `apply` use these local Apple credentials directly. StoreConfig Secret Keys, hosted account commands, and backup App Store Connect credentials are no longer used.
|
|
60
|
+
|
|
66
61
|
#### Get App Store Connect Key and IDs
|
|
67
62
|
|
|
68
63
|
This is required for store config to manage your apps on App Store Connect.
|
|
@@ -214,8 +209,6 @@ storeconfig example --type iap
|
|
|
214
209
|
}
|
|
215
210
|
```
|
|
216
211
|
|
|
217
|
-
## 🧰 MCP Server - AI Integration
|
|
218
|
-
|
|
219
212
|
### MCP Server - AI Integration
|
|
220
213
|
|
|
221
214
|
StoreConfig includes a Model Context Protocol (MCP) server that provides AI assistants with direct access to the JSON schema, business rules, and CLI guidelines. This enables AI tools to better understand and help you work with StoreConfig files.
|
|
@@ -238,7 +231,7 @@ Add the following configuration to your MCP client:
|
|
|
238
231
|
}
|
|
239
232
|
```
|
|
240
233
|
|
|
241
|
-
For detailed setup instructions for different MCP clients (Cursor, VSCode, Claude Desktop, etc.), see the [MCP Configuration documentation](https://storeconfig.com/docs#
|
|
234
|
+
For detailed setup instructions for different MCP clients (Cursor, VSCode, Claude Desktop, etc.), see the [MCP Configuration documentation](https://storeconfig.com/docs#ai-support).
|
|
242
235
|
|
|
243
236
|
### VSCode Setup
|
|
244
237
|
|
|
@@ -306,8 +299,9 @@ Due to current App Store Connect API restrictions, some features are not yet ava
|
|
|
306
299
|
|
|
307
300
|
### Security
|
|
308
301
|
|
|
309
|
-
-
|
|
310
|
-
-
|
|
302
|
+
- Apple credentials are stored locally at `~/.storeconfig/apple-credentials.json` for local App Store Connect access. You can revoke the key at any time through App Store Connect.
|
|
303
|
+
- StoreConfig does not use hosted accounts, StoreConfig Secret Keys, backup App Store Connect credentials, or remote job polling in the local-only CLI.
|
|
304
|
+
- Price point data is refreshed from shared static snapshots and cached locally under `~/.storeconfig/cache/price-points`. Currency data is cached locally under `~/.storeconfig/cache/currencies.json`.
|
|
311
305
|
|
|
312
306
|
## Support
|
|
313
307
|
|
|
@@ -316,4 +310,4 @@ Due to current App Store Connect API restrictions, some features are not yet ava
|
|
|
316
310
|
- 📄 [JSON Schema](https://storeconfig.com/storeconfig-schema.json)
|
|
317
311
|
- 🐛 [Report Issues](https://github.com/semihcihan/storeconfig/issues)
|
|
318
312
|
|
|
319
|
-
This CLI is
|
|
313
|
+
This CLI is open source under the MIT license.
|