pabal-web-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| aso-to-publicA | Converts ASO data from pullData to public/products/[slug]/ structure. IMPORTANT: Always use 'search-app' tool first to resolve the exact slug before calling this tool. The user may provide an approximate name, bundleId, or packageName - search-app will find and return the correct slug. Never pass user input directly as slug. This tool:
The conversion from unstructured to structured format is performed by Claude based on the conversion prompt. |
| public-to-asoA | Prepares ASO data from public/products/[slug]/ to pushData format. IMPORTANT: Always use 'search-app' tool first to resolve the exact slug before calling this tool. The user may provide an approximate name, bundleId, or packageName - search-app will find and return the correct slug. Never pass user input directly as slug. This tool:
Before running, review docs/aso/ASO_FIELD_LIMITS.md for per-store limits. This prepares data for pushing to stores without actually uploading. |
| improve-publicA | Returns ASO optimization instructions with keyword research data. You MUST execute the returned instructions. IMPORTANT: Use 'search-app' tool first to resolve the exact slug. HOW THIS TOOL WORKSThis tool returns a PROMPT containing:
YOU MUST:
DO NOT just report the instructions back to the user - you must perform the optimization yourself. WORKFLOWStage 1: improve-public(slug, stage="1") → Returns keyword data + instructions → You create optimized primary locale JSON → save-locale-file Stage 2: improve-public(slug, stage="2", optimizedPrimary=) → Returns per-locale instructions → You optimize each locale → save-locale-file for each STAGES
KEYWORD SOURCES (Per Locale)
CRITICAL: Only processes existing locale files. Does NOT create new files. |
| init-projectA | Guides the initialization flow: run pabal-store-api-mcp Init, then convert ASO pullData into public/products/[slug]/. This tool is read-only and returns a checklist. It does not call pabal-store-api-mcp directly or write files. Steps:
|
| create-blog-htmlA | Generate HTML blog posts under public/blogs///.html with a BLOG_META block. CRITICAL: WRITING STYLE CONSISTENCY Before generating content, you MUST:
IMPORTANT REQUIREMENTS:
Slug rules:
HTML Structure (follows public/en-US.html pattern):
Supports multiple locales when locales[] is provided. Each locale gets its own HTML file. For each locale, you must:
|
| keyword-researchA | Prep + persist keyword research ahead of improve-public using mcp-appstore outputs. IMPORTANT: Always use 'search-app' tool first to resolve the exact slug before calling this tool. The user may provide an approximate name, bundleId, or packageName - search-app will find and return the correct slug. Never pass user input directly as slug. CRITICAL: Multi-Locale Execution PlanMANDATORY WORKFLOW - Complete each locale fully before moving to next: For EACH locale+platform combination, execute this cycle:
IMPORTANT: Research → Save → Next pattern
FORBIDDEN:
REQUIRED:
|
| localize-screenshotsA | Translate app screenshots to multiple languages using Gemini API. IMPORTANT: This tool uses the search-app tool internally to validate the app. You can provide an approximate name, bundleId, or packageName. This tool:
Requirements:
Example structure: |
| search-appB | Search registered apps from registered-apps.json.
|
| validate-asoA | Validates ASO data against App Store / Google Play field limits and rules. IMPORTANT: Use 'search-app' tool first to resolve the exact slug. WHAT IT VALIDATES
WHEN TO USE
OPTIONS
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Most tools have distinct purposes, but there is some overlap between 'aso-to-public' and 'public-to-aso' as they handle opposite conversion directions, which could cause confusion if not carefully read. Tools like 'improve-public' and 'validate-aso' are clearly different, but the bidirectional conversion tools might be misselected without clear context.
Tool names mostly follow a consistent verb_noun or verb-noun pattern (e.g., 'aso-to-public', 'create-blog-html', 'improve-public'), with minor deviations like 'search-app' (verb_noun) and 'init-project' (verb-noun). The naming is readable and predictable, though not perfectly uniform.
With 9 tools, the count is well-scoped for the domain of ASO (App Store Optimization) and content management. Each tool serves a specific function in the workflow, from data conversion to validation, without being overly sparse or bloated.
The tool set provides comprehensive coverage for ASO workflows, including data initialization, conversion, optimization, validation, and localization. It supports full lifecycle management from pulling data to preparing for store uploads, with no obvious gaps that would hinder an agent.