A Model Context Protocol (MCP) server for interacting with the App Store Connect API. This server provides tools for managing apps, beta testers
Connect App Store Connect to Claude, Cursor or any other MCP client and it stops being a tab you switch to. A Model Context Protocol (MCP) server for interacting with the App Store Connect API. This server provides tools for managing apps, beta testers, bundle IDs, devices, app metadata, and capabilities in App Store Connect. The app store connect mcp server is what makes that connection.
The App Store Connect MCP Server is a comprehensive tool that bridges the gap between AI and Apple's App Store Connect ecosystem. Built on the Model Context Protocol (MCP), this server enables developers to interact with their App Store Connect data directly through conversational AI, making app management, beta testing, and analytics more accessible than ever.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
macOS — The macOS tool exposed by this serverWindows — The Windows tool exposed by this serverlist_apps — The list_apps tool exposed by this serverget_app_info — The get_app_info tool exposed by this serverlist_beta_groups — The list_beta_groups tool exposed by this serverlist_group_testers — The list_group_testers tool exposed by this serveradd_tester_to_group — The add_tester_to_group tool exposed by this serverremove_tester_from_group — The remove_tester_from_group tool exposed by this serverlist_beta_feedback_screenshots — The list_beta_feedback_screenshots tool exposed by this serverget_beta_feedback_screenshot — Get detailed information about a specific beta feedback screenshotcreate_app_store_version — The create_app_store_version tool exposed by this serverlist_app_store_versions — The list_app_store_versions tool exposed by this serverConfiguration is passed through the environment: APP_STORE_CONNECT_KEY_ID, APP_STORE_CONNECT_ISSUER_ID, APP_STORE_CONNECT_P8_PATH, APP_STORE_CONNECT_VENDOR_NUMBER, YOUR_KEY_ID, YOUR_ISSUER_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Installation goes through your MCP client rather than a global install: point it at @smithery/cli on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. App Store Connect's toolset — macOS, Windows, list_apps and 11 more — is a fair guide to whether it matches your workflow. It is maintained by JoshuaRileyDev; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against App Store Connect's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| macOS | The macOS tool exposed by this server. |
| Windows | The Windows tool exposed by this server. |
| list_apps | The list_apps tool exposed by this server. |
| get_app_info | The get_app_info tool exposed by this server. |
| list_beta_groups | The list_beta_groups tool exposed by this server. |
| list_group_testers | The list_group_testers tool exposed by this server. |
| add_tester_to_group | The add_tester_to_group tool exposed by this server. |
| remove_tester_from_group | The remove_tester_from_group tool exposed by this server. |
| list_beta_feedback_screenshots | The list_beta_feedback_screenshots tool exposed by this server. |
| get_beta_feedback_screenshot | Get detailed information about a specific beta feedback screenshot. |
| create_app_store_version | The create_app_store_version tool exposed by this server. |
| list_app_store_versions | The list_app_store_versions tool exposed by this server. |
| list_app_store_version_localizations | The list_app_store_version_localizations tool exposed by this server. |
| get_app_store_version_localization | The get_app_store_version_localization tool exposed by this server. |
{
"mcpServers": {
"app-store-connect": {
"command": "npx",
"args": [
"-y",
"appstore-connect-mcp-server"
],
"env": {
"APP_STORE_CONNECT_KEY_ID": "YOUR_KEY_ID",
"APP_STORE_CONNECT_ISSUER_ID": "YOUR_ISSUER_ID",
"APP_STORE_CONNECT_P8_PATH": "/path/to/your/auth-key.p8",
"APP_STORE_CONNECT_VENDOR_NUMBER": "YOUR_VENDOR_NUMBER_OPTIONAL"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| APP_STORE_CONNECT_KEY_ID | Credential the server authenticates with. | Yes |
| APP_STORE_CONNECT_ISSUER_ID | Configuration value read at startup. | Optional |
| APP_STORE_CONNECT_P8_PATH | Filesystem location the server is allowed to use. | Optional |
| APP_STORE_CONNECT_VENDOR_NUMBER | Configuration value read at startup. | Optional |
| YOUR_KEY_ID | Credential the server authenticates with. | Yes |
| YOUR_ISSUER_ID | Configuration value read at startup. | Optional |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.