storeconfig 0.0.21 → 0.0.22
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 +39 -15
- package/dist/cli.js +96 -94
- package/dist/cli.js.map +3 -3
- package/dist/mcp.mjs +165 -0
- package/dist/mcp.mjs.map +7 -0
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ For detailed documentation, visit [storeconfig.com/docs](https://storeconfig.com
|
|
|
23
23
|
- **😌 Easy to Use** - Prepare App Store Connect for your app in minutes instead of hours. What normally takes 2+ hours of manual work is now done in minutes.
|
|
24
24
|
- **⚡️ Quick App Duplication** - Copy App Store Connect data from an existing app to a new app in minutes.
|
|
25
25
|
- **📄 Configuration as Code** - Define your app structure in version-controlled JSON files.
|
|
26
|
-
- **🤖 Vibe Code Your App Store Connect Setup** - Use AI to vibe code your JSON configuration for app descriptions, content updates, in-app purchases, subscriptions, and more.
|
|
26
|
+
- **🤖 Vibe Code Your App Store Connect Setup** - Use our MCP server and AI to vibe code your JSON configuration for app descriptions, content updates, in-app purchases, subscriptions, and more.
|
|
27
27
|
- **🌍 Multi-Language Support** - Easily manage localized content across all supported territories.
|
|
28
28
|
- **📊 Bulk Operations** - Make changes across multiple products, subscriptions, or territories at once.
|
|
29
29
|
- **🔄 Bidirectional Sync** - Fetch current state of your app and apply changes to App Store Connect.
|
|
@@ -217,23 +217,43 @@ storeconfig example --type iap
|
|
|
217
217
|
}
|
|
218
218
|
```
|
|
219
219
|
|
|
220
|
-
## 🧰
|
|
220
|
+
## 🧰 MCP Server - AI Integration
|
|
221
221
|
|
|
222
|
-
|
|
222
|
+
### MCP Server - AI Integration
|
|
223
223
|
|
|
224
|
-
|
|
224
|
+
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.
|
|
225
225
|
|
|
226
|
-
|
|
226
|
+
This is optional but recommended for the best experience.
|
|
227
227
|
|
|
228
|
-
|
|
228
|
+
#### Installation
|
|
229
|
+
|
|
230
|
+
The MCP server is included when you install StoreConfig globally.
|
|
231
|
+
|
|
232
|
+
#### Configuration
|
|
233
|
+
|
|
234
|
+
Add the following configuration to your MCP client:
|
|
235
|
+
|
|
236
|
+
```json
|
|
237
|
+
{
|
|
238
|
+
"storeconfig": {
|
|
239
|
+
"command": "storeconfig-mcp"
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
For detailed setup instructions for different MCP clients (Cursor, VSCode, Claude Desktop, etc.), see the [MCP Configuration documentation](https://storeconfig.com/docs#mcp-configuration).
|
|
229
245
|
|
|
230
246
|
### VSCode Setup
|
|
231
247
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
248
|
+
Enable validation, autocomplete, and IntelliSense support. This is optional but recommended for the best experience.
|
|
249
|
+
|
|
250
|
+
#### Setup Steps
|
|
251
|
+
|
|
252
|
+
1. Open VSCode Settings (Cmd/Ctrl + ,)
|
|
253
|
+
2. Search for "json schema"
|
|
254
|
+
3. Ensure Schema Download is enabled
|
|
255
|
+
4. Click "Edit in settings.json"
|
|
256
|
+
5. Add the following configuration:
|
|
237
257
|
|
|
238
258
|
```json
|
|
239
259
|
// root settings.json
|
|
@@ -254,6 +274,14 @@ When using AI tools to modify your StoreConfig JSON files, provide the schema UR
|
|
|
254
274
|
> - **User Settings** (applies to all your projects)
|
|
255
275
|
> - **Workspace Settings** (applies only to the current project)
|
|
256
276
|
|
|
277
|
+
#### JSON Schema URL
|
|
278
|
+
|
|
279
|
+
The schema URL used in the configuration above:
|
|
280
|
+
|
|
281
|
+
**JSON Schema URL:** `https://storeconfig.com/storeconfig-schema.json`
|
|
282
|
+
|
|
283
|
+
> **Note:** If you don't want to use the MCP server, you can still use AI tools with StoreConfig by providing the schema URL directly. When using AI tools to modify your StoreConfig JSON files, provide the schema URL for more accurate and consistent results.
|
|
284
|
+
|
|
257
285
|
### Benefits
|
|
258
286
|
|
|
259
287
|
- ✅ **Real-time validation** - Catch errors as you type
|
|
@@ -261,10 +289,6 @@ When using AI tools to modify your StoreConfig JSON files, provide the schema UR
|
|
|
261
289
|
- ✅ **Documentation** - Hover over properties to see descriptions
|
|
262
290
|
- ✅ **Type safety** - Ensure your JSON structure is correct
|
|
263
291
|
|
|
264
|
-
### Schema URL
|
|
265
|
-
|
|
266
|
-
The JSON Schema is available at: [https://storeconfig.com/storeconfig-schema.json](https://storeconfig.com/storeconfig-schema.json)
|
|
267
|
-
|
|
268
292
|
### Tool Limitations
|
|
269
293
|
|
|
270
294
|
Due to current App Store Connect API restrictions, some features are not yet available in the CLI. As soon as these capabilities are supported by the API, we will update the CLI accordingly.
|