appnova-app-store-connect-mcp

appnova-app-store-connect-mcp

Enables managing your iOS app's entire lifecycle with natural language through App Store Connect, offering 48 tools across 14 categories for ASO, reviews, analytics, subscriptions, pricing, and more.

Category
访问服务器

README


title: appnova-app-store-connect-mcp emoji: 🍎 colorFrom: gray colorTo: red sdk: docker app_port: 7860 pinned: false

appnova-app-store-connect-mcp

App Store Connect MCP server for Claude — manage your iOS app's entire lifecycle with natural language. No Docker, no Python, no pip. Just add 4 lines to your Claude config and start talking to your App Store.

48 tools · 14 categories · Hosted on Hugging Face Spaces · Free


Quick Start — Zero Setup (Recommended)

No installation required. The server is already running on Hugging Face Spaces.

📖 Full installation guide with screenshots and troubleshooting: docs/installation.md

1. Get your App Store Connect API credentials

Go to App Store Connect → Users and Access → Integrations and create an API key with Admin or App Manager role. You'll need:

  • Issuer ID — shown at the top of the API Keys page
  • Key ID — shown next to your key
  • Private key — download the .p8 file (only downloadable once)
  • Vendor Number — from Payments and Financial Reports

2. Add to your Claude client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "appstore": {
      "url": "https://haikuku-appnova-app-store-connect-mcp.hf.space/mcp",
      "headers": {
        "x-appstore-issuer-id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        "x-appstore-key-id": "XXXXXXXXXX",
        "x-appstore-private-key": "-----BEGIN PRIVATE KEY-----\\nMIGH...\\n-----END PRIVATE KEY-----",
        "x-appstore-vendor-number": "12345678"
      }
    }
  }
}

Claude Code

Add to .mcp.json in your project root:

{
  "mcpServers": {
    "appstore": {
      "type": "http",
      "url": "https://haikuku-appnova-app-store-connect-mcp.hf.space/mcp",
      "headers": {
        "x-appstore-issuer-id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        "x-appstore-key-id": "XXXXXXXXXX",
        "x-appstore-private-key": "-----BEGIN PRIVATE KEY-----\\nMIGH...\\n-----END PRIVATE KEY-----",
        "x-appstore-vendor-number": "12345678"
      }
    }
  }
}

3. Restart your Claude client

That's it. Ask Claude: "List my apps" to verify the connection.


How to format the private key

Open your .p8 file — it looks like this:

-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg...
-----END PRIVATE KEY-----

Important: In the JSON config you must use \\n (two characters: backslash + n) instead of real line breaks. Using a single \n creates an actual newline which breaks HTTP headers.

Use this one-liner to get the correctly formatted value:

awk '{printf "%s\\n", $0}' AuthKey_XXXXXXXXXX.p8 | sed '$ s/\\n$//'

Paste the output directly as the x-appstore-private-key value.


Optional: Pin a default app

Add x-appstore-app-id to skip calling select_app every session:

"headers": {
  "x-appstore-issuer-id": "...",
  "x-appstore-key-id": "...",
  "x-appstore-private-key": "...",
  "x-appstore-vendor-number": "...",
  "x-appstore-app-id": "6502225088"
}

Use either the numeric App Store ID or bundle ID (e.g. com.example.yourapp).


Security

Your credentials are sent as HTTP headers directly to the server and used exclusively to sign JWT tokens for Apple's API. They are not logged, not stored, and not shared. Each request is fully isolated — credentials from one user never touch another user's session.

The server is open source: github.com/alperduzgun/appnova-app-store-connect-mcp

If you prefer to host it yourself, see the Self-Hosting section below.


What You Can Do

App Store Optimization (ASO)

Tool Description
get_locales List all localizations with IDs — lightweight index, call first
get_locale_metadata Full metadata for one locale: name, subtitle, keywords, description, what's new
update_info Update app name and/or subtitle (always editable, any version state)
update_version Update keywords, description, what's new (requires PREPARE_FOR_SUBMISSION)
list_custom_product_pages List all Custom Product Pages with version state and visibility
get_custom_product_page Full CPP detail including per-locale promotional text

Reviews & Ratings

Tool Description
get_reviews Fetch reviews sorted by newest; filter by star rating (1–5)
get_ratings Average rating, total count, sample size
respond_to_review Post a new developer response
update_review_response Edit an existing response in-place (preserves timestamp)
delete_review_response Delete a response before re-posting

Analytics & Sales

Tool Description
get_analytics Impressions, page views, app units, conversion rate, sessions, crashes — daily breakdown up to 365 days
get_sales Downloads, redownloads, updates, IAP, subscriptions, revenue — daily breakdown up to 365 days

Finance Reports

Tool Description
get_finance_report Monthly proceeds by territory and currency for a specific month
get_finance_summary Aggregated proceeds across the last N months (default 3, max 12)

Subscriptions

Tool Description
list_subscription_groups All subscription groups and their products
create_subscription_group Create a new subscription group
create_subscription Create a subscription product (weekly → yearly)
create_subscription_localization Add localized name and description to a subscription

In-App Purchases

Tool Description
list_in_app_purchases All IAPs: consumable, non-consumable, non-renewing
create_in_app_purchase Create a new IAP product
create_iap_localization Add localized display name and description
delete_in_app_purchase Delete a draft IAP

Pricing

Tool Description
get_iap_price_points All available price tiers for an IAP in a territory
set_iap_price Set IAP price by price point ID
set_iap_price_by_amount Set IAP price by dollar amount — auto-matches tier
get_subscription_price_points All available price tiers for a subscription
set_subscription_price Set subscription price by price point ID
set_subscription_price_by_amount Set subscription price by dollar amount — auto-matches tier

App Versions & Submission

Tool Description
list_app_versions Recent versions with state (READY_FOR_SALE, IN_REVIEW, etc.)
create_app_version Create a new version in PREPARE_FOR_SUBMISSION state
submit_for_review Submit a version for App Review
cancel_submission Withdraw an in-progress submission

Phased Release

Tool Description
get_phased_release Current phased rollout status for a version
create_phased_release Enable 7-day phased rollout (1%→2%→5%→10%→20%→50%→100%)
update_phased_release Pause, resume, or complete rollout immediately

TestFlight

Tool Description
list_builds Recent builds with processingState, version, expiration
list_beta_groups All beta groups with public link info
add_beta_tester Invite a tester to a beta group
remove_beta_tester Remove a tester from a beta group

In-App Events

Tool Description
list_app_events All promotional events with state (DRAFT/LIVE/ARCHIVED) and localizations

Bundle ID Capabilities

Tool Description
get_bundle_id_info Numeric ID, platform, name, and seed ID for a bundle identifier
list_bundle_id_capabilities All active capabilities (Sign in with Apple, Push, IAP, etc.)
enable_bundle_id_capability Enable a capability — idempotent, safe to call repeatedly
disable_bundle_id_capability Remove a capability by resource ID

App Selection

Tool Description
list_apps All apps in your account
select_app Set the active app by numeric ID or bundle ID
get_active_app Show the currently selected app

Example Workflows

ASO audit across all locales:

"Get all my app's locale metadata and tell me which ones are missing keywords
or have subtitles under 20 characters"

Review triage:

"Show me all 1-star reviews from the last 50 and draft a response for each
one that mentions a crash"

Revenue summary:

"Give me a finance summary for the last 3 months and compare monthly trends"

Release workflow:

"Create a new 2.5.0 version, update the what's new text for en-US and tr,
then submit for review"

Capability check:

"List all active capabilities for com.example.myapp and confirm Sign in with
Apple is enabled"

Requirements

  • App Store Connect API key with Admin or App Manager role
  • Claude Desktop 0.10+ (or any MCP client that supports HTTP transport with custom headers)

Self-Hosting

Want to run the server yourself? Full source code and setup instructions at github.com/alperduzgun/appnova-app-store-connect-mcp.


License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选