Enables management of App Store Connect metadata, releases, and app information through ASO workflows, including pulling and pushing app data, checking versions, and updating release notes.
Provides tools for managing Google Play Console apps, including ASO data synchronization, release management, version checking, and updating release notes for Android applications.
Integrates with Google Search Console for SEO management and indexing through the Pabal Web interface.

MCP server for App Store Connect & Play Console API
Up-to-date ASO workflows exposed as MCP tools. Run it as a stdio MCP server (Claude Code, Cursor, MCP Inspector, etc.) to manage metadata, releases, and store syncs without leaving your AI client.
Runs 100% locally on your machine, so credentials and cached ASO data never leave your environment (store API calls are made directly from your device).
❌ Without pabal-mcp
Manual App Store Connect and Google Play Console clicks for every update
Copy-paste errors across locales and release notes
Repeating the same setup per client or project
✅ With pabal-mcp
One MCP server that handles ASO pulls/pushes for both stores
Consistent release note updates and version checks from your AI client
Reusable, scriptable workflows backed by local cache and config
🛠️ MCP Client Installation
Requirements
Node.js >= 18
MCP client: Cursor, Claude Code, VS Code, Windsurf, etc.
If you repeatedly do ASO/store tasks, add a client rule like "always use pabal-mcp" so the MCP server auto-invokes without typing it every time.
Global install (recommended)
Install globally first for fastest starts and to avoid npm download issues (proxy/firewall/offline). You can still use npx -y pabal-mcp, but global install is recommended. After global install, set your MCP config to command: "pabal-mcp" (no npx needed).
Add to ~/.cursor/mcp.json (global) or project .cursor/mcp.json:
Example settings.json MCP section:
See theofficial Claude Code MCP documentation for detailed configuration options.
Add to Claude Code MCP settings (JSON format):
Or if installed globally (npm install -g pabal-mcp):
🔐 Configure Credentials
Create config directory and set permissions:
Create the config file (pre-filled placeholders):
Replace the issuerId and keyId placeholders in the next step after you grab your App Store Connect keys.
dataDir is the absolute path where raw data pulled from each store is stored (e.g., /ABSOLUTE/PATH/TO/pabal-web).
Add your credentials to
~/.config/pabal-mcp/:App Store Connect API key:
App Store Connect > Users and Access > Keys → "Generate API Key." Use Admin/App Manager, download the
.p8(only downloadable once), and save it as~/.config/pabal-mcp/app-store-key.p8.Copy the Issuer ID and Key ID from the key details, then update
issuerIdandkeyIdin~/.config/pabal-mcp/config.jsonwith those values.
Google Play service account JSON:
Google Cloud Manage service accounts → create a service account (name it
pabalfor clarity) → Create key → JSON.Save the downloaded JSON as
~/.config/pabal-mcp/google-play-service-account.json.Grant Play Console access to that service account email: go to Users and permissions → Invite new user → enter the service account email → choose the ASO apps → enable:
View app information and download bulk reports (read-only)
Create, edit, and delete drafts of apps
Release to production
Manage device exclusion lists
Use Play App Signing
Manage store presence
Config file shape (after updating your IDs):
{ "dataDir": "/ABSOLUTE/PATH/TO/pabal-web", "appStore": { "issuerId": "<your-issuer-id>", "keyId": "<your-key-id>", "privateKeyPath": "./app-store-key.p8" }, "googlePlay": { "serviceAccountKeyPath": "./google-play-service-account.json" } }Pull store data
Use
apps-initto fetch and auto-register existing apps from the store APIs. This will populate your~/.config/pabal-mcp/registered-apps.jsonwith the apps available in your stores.Lock file permissions (all files in the config folder):
This applies to every file under ~/.config/pabal-mcp/; rerun after adding any new credential file.
🔧 MCP Tools
Authentication
auth-check: Check App Store Connect / Google Play authentication.
App management
apps-init: Fetch apps from the store API and auto-register them (Google Play needspackageName).apps-add: Register a single app by bundleId/packageName.apps-search: Search registered apps.
ASO data sync
aso-pull: Fetch ASO data to the.aso/local cache.aso-push: Push ASO data from.aso/to the stores.
Release management
release-check-versions: Show the latest versions per store.release-create: Create a new version.release-pull-notes: Pull release notes to the.aso/cache.release-update-notes: Update release notes/what's new.
🏗️ Development
From source
Testing
Run all tests: npm test
🌐 Pabal Web
Want to manage ASO and SEO together? Check out Pabal Web.

Pabal Web is a Next.js-based web interface that provides a complete solution for unified management of ASO, SEO, Google Search Console indexing, and more.