asc-feedback-mcp
Provides tools to list and inspect TestFlight beta feedback, including screenshot submissions, crash submissions, crash logs, and screenshot downloads from App Store Connect.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@asc-feedback-mcplist recent crash feedback for app 1234567890"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
asc-feedback-mcp
An MCP (Model Context Protocol) server that exposes App Store Connect
TestFlight beta feedback — screenshot submissions, crash submissions, crash
logs, and screenshot downloads — as tools for MCP-capable clients. It
authenticates to the App Store Connect API with a short-lived ES256 JWT minted
from your .p8 API key, so an assistant can pull and triage beta-tester
feedback without you ever pasting raw credentials into a conversation. The
server runs in Docker and speaks streamable-HTTP MCP at
http://127.0.0.1:8081/mcp.
Features
4 tools available for listing and inspecting TestFlight beta feedback and downloading feedback screenshots.
Streamable-HTTP MCP transport, served at
http://127.0.0.1:8081/mcp.Docker-based deployment via
docker compose— no local Python environment needed.Binds to
127.0.0.1only; the service is unauthenticated and must never be exposed beyond the local machine.
Related MCP server: asc-mcp
Architecture
classDiagram
class Config {
+str key_id
+str issuer_id
+str private_key
}
class AscClient {
-str _token
-float _token_exp
-_bearer_token() str
+list_screenshot_feedback(asc_app_id, limit) dict
+list_crash_feedback(asc_app_id, limit) dict
+get_crash_log(submission_id) dict
}
class Server {
+list_screenshot_feedback(asc_app_id, limit) dict
+list_crash_feedback(asc_app_id, limit) dict
+get_crash_log(submission_id) dict
+download_screenshot(url) Image
}
Server --> AscClient : calls
AscClient --> Config : reads credentialssequenceDiagram
participant Client as MCP Client
participant Server as FastMCP server
participant ASCClient as AscClient
participant ASC as App Store Connect API
Client->>Server: call tool (e.g. list_crash_feedback)
Server->>Server: validate parameters
Server->>ASCClient: forward request
ASCClient->>ASCClient: reuse cached ES256 JWT (mint only if near expiry)
ASCClient->>ASC: GET request with Bearer JWT
ASC-->>ASCClient: JSON response
ASCClient-->>Server: parsed result
Server-->>Client: tool resultUsage
The server speaks MCP over streamable-http at:
http://127.0.0.1:8081/mcpTools
Tool | Parameters | Description |
|
| List the most recent TestFlight screenshot feedback submissions for an app. Returns raw App Store Connect API JSON. |
|
| List the most recent TestFlight crash feedback submissions for an app. Returns raw App Store Connect API JSON. |
|
| Fetch the crash log for one crash feedback submission. Returns raw App Store Connect API JSON ( |
|
| Download a TestFlight feedback screenshot and return it as image content. Host validation is best-effort: requires https and an Apple-owned hostname. |
asc_app_id must contain digits only, and limit must be between 1 and 200
inclusive. submission_id may only contain letters, digits, and dashes.
Example MCP client config
{
"mcpServers": {
"asc-feedback": {
"type": "streamable-http",
"url": "http://127.0.0.1:8081/mcp"
}
}
}Or with Claude Code:
claude mcp add --transport http asc-feedback http://127.0.0.1:8081/mcpThe host port (8081) is configurable in docker-compose.yaml, but the bind
address must always keep the 127.0.0.1: prefix — never change it to
0.0.0.0 or otherwise expose it publicly.
Getting Started
Prerequisites
Docker Desktop or Docker Engine with Docker Compose.
An App Store Connect API key.
Get an App Store Connect API key
In App Store Connect, go to Users and Access → Integrations → App Store
Connect API (Team Keys) and generate a key there. This gives you the
Issuer ID (shown at the top of that page), the Key ID (in the keys
table), and a downloadable .p8 private key file (e.g.
AuthKey_ABC123DEFG.p8) — save this file, as Apple only lets you download it
once.
Value | Where it comes from |
| Users and Access → Integrations → App Store Connect API, keys table |
| Users and Access → Integrations → App Store Connect API, shown at the top of the page |
| Base64 of the |
| Apps → (your app) → App Information → General Information → Apple ID |
Steps
Clone this repository.
Copy the environment template:
cp .env.example .envEdit
.envand fill in:ASC_KEY_ID— the API key id from Integrations.ASC_ISSUER_ID— the issuer id from Integrations.ASC_PRIVATE_KEY_B64— the base64-encoded contents of your.p8file, produced with:base64 -i AuthKey_XXXX.p8 | tr -d '\n'
Build and start the server:
docker compose up -d --buildVerify it's running by initializing an MCP session against the endpoint:
curl -i http://127.0.0.1:8081/mcp \ -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"verify","version":"1.0"}}}'Alternatively, add the server to an MCP client using the example config above, and confirm all 4 tools (
list_screenshot_feedback,list_crash_feedback,get_crash_log,download_screenshot) appear.
Security
This service implements no authentication. It binds to 127.0.0.1 only
and must never be exposed on 0.0.0.0 or any public/non-loopback interface —
anyone who can reach the port can pull your beta feedback using your App Store
Connect credentials.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/max-rousseau/asc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server