This server enables full lifecycle management of app publishing on Huawei AppGallery Connect.
App Metadata Management: Query and update app info including name, description, category, age/content ratings, support contacts, and privacy policy URL
Localized Store Listings: Add, update, or remove per-language store listings (name, description, release notes) with BCP-47 language support
File Uploads: Obtain pre-signed upload URLs, upload APK/AAB files from local disk with automatic chunking for large files (>4 GB), or attach already-uploaded files manually
AAB Compilation Status: Query the compilation status of AAB packages by package ID
Release Submission: Submit apps for full release, phased/grey rollout (with configurable percentage), scheduled release, or open testing (channel_id=2)
External Binary Submission: Submit apps using binaries hosted on your own HTTPS server for Huawei to fetch
Phased Release Control: Proceed, roll back, or stop a phased release; convert to full release or update rollout schedule and percentage
Scheduled Release Management: Update scheduled release times while the app is in a Releasing state
GMS Dependency Declaration: Set whether the app depends on Google Mobile Services
Analytics Reports: Retrieve download/installation and installation failure report URLs in CSV or Excel format, covering up to 180 days of data
Provides tools for managing app publishing on Huawei AppGallery, enabling users to update app metadata, upload binaries, and manage the submission and release process through the AppGallery Connect API.
Integrates with Huawei's AppGallery Connect platform to automate application management tasks, including metadata localized listing updates, binary file uploads, and release status monitoring.
Huawei AppGallery MCP
A Model Context Protocol (MCP) server for managing app publishing on Huawei AppGallery Connect. Integrates directly with Claude Desktop or any MCP-compatible client.
Features
Query and update app metadata (name, description, category, ratings, support contacts)
Manage localized store listings per language
Upload APK / AAB files with automatic chunked upload for large files (>4 GB)
Submit apps for full release, phased (grey) release, scheduled release, or open testing (
channel_id=2)Submit apps when the binary is hosted on your own server
Manage phased release lifecycle (state changes, percentage updates)
Query AAB compilation status
Update scheduled release time
Set GMS dependency flag
Obtain download/installation and install-failure report URLs
Installation
Via MCP Registry (recommended)
Claude Code:
claude mcp add --from-registry io.github.AgiMaulana/HuaweiAppGalleryMcpOther MCP clients:
Find it at registry.modelcontextprotocol.io — search for huawei-appgallery.
Manual installation
pip install huawei-app-gallery-mcpOr with uv:
uv pip install huawei-app-gallery-mcpConfiguration
1. Get API credentials
Go to AppGallery Connect
Navigate to Users & Permissions → API key → Connect API
Click Create and select the App manager role
Copy the Client ID and Client Secret
These are Connect API credentials — different from HMS Core app credentials.
2. Set environment variables
Create a .env file in your working directory (the server loads it automatically):
HUAWEI_CLIENT_ID=your_connect_api_client_id
HUAWEI_CLIENT_SECRET=your_connect_api_client_secret
# Optional: set a default app ID so you don't have to pass it to every tool call
HUAWEI_APP_ID=your_app_id3. Connect to your MCP client (manual install only)
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"huawei-appgallery": {
"command": "huawei-app-gallery-mcp",
"env": {
"HUAWEI_CLIENT_ID": "your_client_id",
"HUAWEI_CLIENT_SECRET": "your_client_secret",
"HUAWEI_APP_ID": "your_app_id"
}
}
}
}Claude Code (machine-level, manual install only)
Create /Library/Application Support/ClaudeCode/managed-mcp.json (macOS) or /etc/claude-code/managed-mcp.json (Linux):
{
"mcpServers": {
"huawei-appgallery": {
"type": "stdio",
"command": "huawei-app-gallery-mcp",
"env": {
"HUAWEI_CLIENT_ID": "your_client_id",
"HUAWEI_CLIENT_SECRET": "your_client_secret",
"HUAWEI_APP_ID": "your_app_id"
}
}
}
}Tools
All tools accept an optional app_id argument. If omitted, HUAWEI_APP_ID from the environment is used as the default.
Tool | Description |
| Query current app metadata (name, description, category, ratings, etc.) |
| Update app metadata in the AppGallery Connect draft |
| Add or update a localized store listing for a specific language |
| Remove a localized store listing |
| Obtain a pre-signed upload URL and auth code before uploading a file |
| Upload an APK/AAB from local disk and attach it to the app draft (auto-chunked for >4 GB) |
| Manually attach already-uploaded files to the app draft |
| Query AAB compilation status for one or more package IDs |
| Submit the app for review and release (supports full, phased, scheduled, and open testing via |
| Submit when the binary is hosted on your own server |
| Change phased release status: proceed, roll back, or stop |
| Convert phased release to full release or update the rollout schedule/percentage |
| Update the scheduled release time (only when app is in Releasing state) |
| Report whether the app depends on GMS |
| Get download URL for the app download & installation report (CSV/Excel, max 180 days) |
| Get download URL for the installation failure report (CSV/Excel, max 180 days) |
Usage Examples
Upload and release a new version:
Upload
/path/to/app-release.aab(AAB, file type 5) then submit it for a full release.
Phased rollout:
Submit the app for a phased release to 20% of users.
Open testing:
Submit the app for open testing (channel_id=2).
Update release notes:
Update the English release notes to "Bug fixes and performance improvements".
Scheduled release:
Submit the app for release on March 20, 2026 at 10:00 UTC.
Download report:
Get the download and installation report URL for the last 30 days in English CSV format.
Publishing Workflow
Update app info → Update language info → Upload APK/AAB → Submit appUse
update_app_info/update_language_infoto set metadata and release notesUse
upload_app_fileto upload the binary (handles chunking automatically)Use
submit_appto trigger review and release
API Reference
This server wraps the AppGallery Connect Publishing API.
License
MIT