mcp-asc 2.0.0 → 2.0.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/README.md +23 -12
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,23 +1,33 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img width="20%" src=".github/assets/logo.webp" alt="mcp-appstore-connect" />
|
|
3
|
+
</p>
|
|
4
|
+
<p align="center">
|
|
5
|
+
<h1 align="center">App Store Connect MCP</h1>
|
|
6
|
+
</p>
|
|
7
|
+
<p align="center">
|
|
8
|
+
App Store Connect in your AI agent. MCP server for the official App Store Connect API.
|
|
9
|
+
</p>
|
|
10
|
+
<div align="center">
|
|
2
11
|
|
|
3
|
-
|
|
12
|
+
[](https://www.npmjs.com/package/mcp-asc)
|
|
13
|
+
[](https://github.com/beautyfree/appstore-connect-mcp/blob/main/LICENSE)
|
|
4
14
|
|
|
5
|
-
|
|
15
|
+
</div>
|
|
6
16
|
|
|
7
|
-
|
|
17
|
+
A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server that connects [Cursor](https://cursor.com), [Claude Desktop](https://claude.ai), and other MCP clients to the official [App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi)—so you can manage iOS/macOS apps, TestFlight, in-app subscriptions, and store metadata via chat or automated tool calls instead of clicking through the App Store Connect UI.
|
|
8
18
|
|
|
9
|
-
**
|
|
19
|
+
**Use it to:** list and inspect apps, builds, and beta groups · manage TestFlight testers and review submissions · create and update subscription groups and prices · edit App Store version localizations and "What's New" · download sales and finance reports · list Xcode schemes and CI products. All with JWT auth and the same API Apple's own tools use.
|
|
10
20
|
|
|
11
|
-
|
|
21
|
+
## Install
|
|
12
22
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
23
|
+
**Cursor (install link):**
|
|
24
|
+
|
|
25
|
+
[](https://cursor.com/en-US/install-mcp?name=app-store-connect&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIm1jcC1hc2MiXSwiZW52Ijp7IkFQUF9TVE9SRV9DT05ORUNUX0tFWV9JRCI6IllPVVJfS0VZX0lEIiwiQVBQX1NUT1JFX0NPTk5FQ1RfSVNTVUVSX0lEIjoiWU9VUl9JU1NVRVJfSUQiLCJBUFBfU1RPUkVfQ09OTkVDVF9QOF9QQVRIIjoiL3BhdGgvdG8veW91ci9hdXRoLWtleS5wOCIsIkFQUF9TVE9SRV9DT05ORUNUX1ZFTkRPUl9OVU1CRVIiOiJZT1VSX1ZFTkRPUl9OVU1CRVJfT1BUSU9OQUwifX0%3D)
|
|
16
26
|
|
|
17
|
-
**
|
|
27
|
+
**Other clients (Claude Desktop, etc.):**
|
|
18
28
|
|
|
19
29
|
```bash
|
|
20
|
-
npx
|
|
30
|
+
npx add-mcp mcp-asc
|
|
21
31
|
```
|
|
22
32
|
|
|
23
33
|
## Configure
|
|
@@ -44,7 +54,8 @@ Create an API key at [App Store Connect → Users and Access → Integrations
|
|
|
44
54
|
"env": {
|
|
45
55
|
"APP_STORE_CONNECT_KEY_ID": "YOUR_KEY_ID",
|
|
46
56
|
"APP_STORE_CONNECT_ISSUER_ID": "YOUR_ISSUER_ID",
|
|
47
|
-
"APP_STORE_CONNECT_P8_PATH": "/path/to/AuthKey_XXXXX.p8"
|
|
57
|
+
"APP_STORE_CONNECT_P8_PATH": "/path/to/AuthKey_XXXXX.p8",
|
|
58
|
+
"APP_STORE_CONNECT_VENDOR_NUMBER": "YOUR_VENDOR_NUMBER_OPTIONAL"
|
|
48
59
|
}
|
|
49
60
|
}
|
|
50
61
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-asc",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "App Store Connect MCP server — manage iOS/macOS apps, TestFlight, in-app subscriptions, and App Store metadata from Cursor, Claude, or any Model Context Protocol client. Uses official App Store Connect API.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/beautyfree/mcp
|
|
7
|
+
"url": "git+https://github.com/beautyfree/appstore-connect-mcp.git"
|
|
8
8
|
},
|
|
9
9
|
"keywords": [
|
|
10
10
|
"app-store-connect",
|