From asodev-skills
Use whenever an ASO.dev skill needs the local localhost AI Companion MCP: reading/filling Apple or Google metadata, nominations, In-App Events, reviews, review replies/complaints, project context, or validation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/asodev-skills:app-store-connect-mcpThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this as the shared local MCP layer for ASO.dev skills when a workflow needs live ASO.dev editor data or draft fills.
Use this as the shared local MCP layer for ASO.dev skills when a workflow needs live ASO.dev editor data or draft fills.
The companion runs locally at:
http://localhost:42111http://127.0.0.1:42111Detailed tool names, localhost endpoints, arguments, payload examples, and fill safety rules live in the repository reference:
tools/aso-dev-local-mcp.mdThis localhost surface is not the ASO.dev product API. Do not infer product API endpoints, auth, payloads, or behavior from this MCP server. Use asodev-public-api and tools/asodev-public-api.md for Developer API or Partners API work.
Official ASO.dev docs may show setup/config examples for external agents. Prefer the active local MCP tools/list and GET /openapi.json for exact tool and endpoint availability because the local server can be ahead of or behind public docs.
Use these exact MCP tool names when available:
| Domain | Read | Fill/update draft |
|---|---|---|
| Apple metadata | get_editor_data | bulk_fill |
| Google metadata | get_google_editor_data | bulk_fill_google |
| Featuring nomination | get_nomination_data | fill_nomination |
| In-App Event | get_app_event_data | fill_app_event |
| Single review | get_review_data | fill_review |
| Review list | get_reviews_data | fill_reviews |
| Project context | get_project_context | save_project_context |
| Validation | validate_ai_companion_data | none |
The fill_* tools fill ASO.dev drafts only. They do not submit to App Store Connect unless a separate tool explicitly says it submits.
get_* operation.get_project_context when positioning, tone, support policy, review policy, or brand constraints matter.validate_ai_companion_data before any fill.Do not fill when:
IAP localization, subscription localization, and pricing/availability are planned for this local MCP. CPP/PPO is planned later. Until matching MCP tools/endpoints exist, domain skills should produce save-ready drafts and diffs, not claim live fills.
npx claudepluginhub asodevapp/skills --plugin asodev-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.