← Back to Plugins
MCP Server MCP

io.github.ryaker/appstore-connect-mcp

github By github 👁 1 views ▲ 0 votes

MCP server for Apple Store Connect API integration with OAuth authentication support

Homepage Verified source GitHub

Install

npx -y @ryaker/[email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "registryBaseUrl": "https://registry.npmjs.org",
      "identifier": "@ryaker/appstore-connect-mcp",
      "version": "1.0.0",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Apple App Store Connect API Key ID",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "APPLE_KEY_ID"
        },
        {
          "description": "Apple App Store Connect Issuer ID",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "APPLE_ISSUER_ID"
        },
        {
          "description": "Apple App Store Connect Private Key (base64 encoded or raw)",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "APPLE_PRIVATE_KEY"
        },
        {
          "description": "Optional: Specific Bundle ID to filter apps",
          "format": "string",
          "name": "APPLE_BUNDLE_ID"
        },
        {
          "description": "Optional: Specific App Store ID",
          "format": "string",
          "name": "APPLE_APP_STORE_ID"
        },
        {
          "description": "Enable OAuth authentication (true/false)",
          "format": "string",
          "name": "OAUTH_ENABLED"
        },
        {
          "description": "OAuth issuer URL (e.g., https://your-tenant.auth0.com)",
          "format": "string",
          "name": "OAUTH_ISSUER"
        },
        {
          "description": "OAuth audience URL",
          "format": "string",
          "name": "OAUTH_AUDIENCE"
        },
        {
          "description": "OAuth JWKS URI for token validation",
          "format": "string",
          "name": "OAUTH_JWKS_URI"
        },
        {
          "description": "Server URL for OAuth deployment",
          "format": "string",
          "name": "SERVER_URL"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...