-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathserver.json
More file actions
94 lines (94 loc) · 2.77 KB
/
Copy pathserver.json
File metadata and controls
94 lines (94 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.ryaker/appstore-connect-mcp",
"description": "MCP server for Apple Store Connect API integration with OAuth authentication support",
"status": "active",
"repository": {
"url": "https://github.com/ryaker/appstore-connect-mcp",
"source": "github"
},
"version": "1.0.0",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "@ryaker/appstore-connect-mcp",
"version": "1.0.0",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"description": "Apple App Store Connect API Key ID",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "APPLE_KEY_ID"
},
{
"description": "Apple App Store Connect Issuer ID",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "APPLE_ISSUER_ID"
},
{
"description": "Apple App Store Connect Private Key (base64 encoded or raw)",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "APPLE_PRIVATE_KEY"
},
{
"description": "Optional: Specific Bundle ID to filter apps",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "APPLE_BUNDLE_ID"
},
{
"description": "Optional: Specific App Store ID",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "APPLE_APP_STORE_ID"
},
{
"description": "Enable OAuth authentication (true/false)",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "OAUTH_ENABLED"
},
{
"description": "OAuth issuer URL (e.g., https://your-tenant.auth0.com)",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "OAUTH_ISSUER"
},
{
"description": "OAuth audience URL",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "OAUTH_AUDIENCE"
},
{
"description": "OAuth JWKS URI for token validation",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "OAUTH_JWKS_URI"
},
{
"description": "Server URL for OAuth deployment",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "SERVER_URL"
}
]
}
]
}