Skip to main content
Glama
LaurMost

App Store MCP Server

by LaurMost

appstore-mcp

An open-source MCP server for live Apple App Store competitor research.

It lets AI agents search apps, fetch public App Store metadata, compare competitors side by side, and retrieve reviews and top charts as structured JSON — for market research, ASO research, and product analysis.

It works with public competitor data only. The default, recommended uvx setup below needs no Apple developer account, no API keys, and no database (a separate, optional hosted alternative does require an API key — see Hosted deployment).

Compare Duolingo, Babbel, and Busuu on the US Apple App Store.

Setup

Requires uv. Add to your MCP client config:

{
  "mcpServers": {
    "appstore": {
      "command": "uvx",
      "args": ["appstore-mcp"]
    }
  }
}
  • Claude Code: claude mcp add appstore -- uvx appstore-mcp, or install as a plugin: /plugin marketplace add LaurMost/appstore-mcp then /plugin install appstore-mcp

  • Claude Desktop: add the snippet above to claude_desktop_config.json

  • Cursor: add the snippet above to ~/.cursor/mcp.json

If your MCP client can't find uvx, use the absolute path from which uvx as the command.

Related MCP server: mcp-store-scraper

Hosted deployment

The uvx setup above is still the primary, recommended way to use this server — it needs no API key. A hosted HTTP instance is also available at https://appstore-mcp.fastmcp.app/mcp for MCP clients that need a network-accessible endpoint instead of a local stdio process. It requires an API key, sent as an Authorization: Bearer <key> header. See docs/adr/0012-additive-hosted-http-mode.md for why this is additive rather than a replacement, and the trade-offs involved.

Tools

Tool

What it does

search_app_store

Search apps by keyword (slim results: id, name, developer, rating, price)

get_app_store_app

Full public profile for one app: description, release notes, ratings, versions, screenshots, subtitle, in-app-purchase flag, privacy labels

compare_app_store_apps

Batch-fetch several apps (IDs or URLs) side by side in one call

get_app_store_reviews

Recent public customer reviews (up to ~500 per storefront)

digest_app_store_reviews

Compress up to 500 reviews into a structured digest (themes, complaints, praise, sentiment) via MCP sampling — raw reviews never enter your context, and foreign-language storefronts are digested in English

get_app_store_screenshots

An app's screenshots as actual images, so a multimodal model can analyze visual positioning, onboarding, and paywall design

get_app_store_charts

Top-free / top-paid / top-grossing charts, overall or per category, per country

All tools are read-only and take a country storefront parameter (ISO 3166-1 alpha-2, default us). One MCP prompt, compare_competitors, packages the headline comparison workflow.

Responses are compact and normalized by default; get_app_store_app accepts include_raw=true when you want Apple's unmodified lookup payload.

Review digestion and MCP sampling

digest_app_store_reviews uses MCP sampling: the tool asks your client's LLM to compress the reviews, so no API key is needed. Not all MCP clients support sampling. If yours doesn't, either use get_app_store_reviews for raw reviews, or enable the server-side fallback:

uvx "appstore-mcp[anthropic]"   # + set ANTHROPIC_API_KEY
uvx "appstore-mcp[openai]"      # + set OPENAI_API_KEY

Set APPSTORE_MCP_SAMPLING_MODEL to override the fallback model. The digest is LLM-generated data reduction, not ground truth — quotes may be translated or paraphrased, and responses say so in meta.warnings.

Data sources and honest limitations

  • Primary source: Apple's public iTunes Search/Lookup API.

  • subtitle, has_iap, and privacy come from the public App Store web page; reviews and charts come from undocumented Apple feeds. These are best-effort: when they break or return nothing, tools degrade gracefully and say so in meta.warnings rather than failing or faking data.

  • Not available from public Apple data, so not provided: download counts, revenue estimates, keyword rankings, full review history, historical charts.

  • Apps are listed per-storefront: results, ratings, and reviews differ by country, and an app can exist in one storefront but not another.

  • Results are cached in-memory for ~15 minutes; meta.fresh tells you whether a response came from cache.

Development

uv sync --dev
uv run pytest          # offline fixture tests
uv run pytest -m live  # live smoke tests against real Apple endpoints
uv run mypy
uv run ruff check .    # lint
uv run ruff format .   # format (Black-compatible style)

fastmcp.json declares how to run the server from source (see Project Configuration). Use it to poke at the server directly, without a full MCP client:

fastmcp dev             # launch the MCP Inspector against local source (stdio)
fastmcp run             # run the server standalone (stdio)
fastmcp dev http.fastmcp.json  # same, but over HTTP on localhost:8000

Want a scriptable CLI instead of an MCP client? fastmcp generate-cli connects to a running server and writes a standalone typed CLI (plus an agent-ready SKILL.md) with one subcommand per tool - it queries over a live connection, so a fastmcp.json/stdio target doesn't work here; start the HTTP variant first, then point it at that:

fastmcp run http.fastmcp.json &
fastmcp generate-cli http://localhost:8000/mcp/ cli.py

The real hosted deployment (https://appstore-mcp.fastmcp.app/mcp, with an API key — see Hosted deployment) works as a generate-cli/fastmcp list/fastmcp call target too, if you'd rather point at that than spin up your own local HTTP server.

This is a local-iteration convenience only — the published package (uvx appstore-mcp) always runs over stdio via its own main() entrypoint, regardless of what's declared here.

Some tests assert full response shapes via inline-snapshot. After an intentional change to a tool's output shape, regenerate them:

uv run pytest --inline-snapshot=fix,create   # then review the diff

Optionally, verify the whole stack through a real MCP client — Claude Code driving the local server over stdio against live Apple:

uv run python scripts/claude_code_integration_test.py

This is a manual, on-demand check, not part of the default dev loop: it requires a logged-in claude CLI and spends real Anthropic API tokens per run.

This project is not affiliated with or endorsed by Apple. "App Store" is a trademark of Apple Inc.

License

MIT

Available Tools

7 tools
compare_app_store_appsCompare App Store appsA
Read-onlyIdempotent

Fetch full profiles for multiple apps (IDs or apps.apple.com URLs) in one batch for side-by-side competitor comparison. Returns the profiles plus per-app errors; apps that fail do not fail the whole call.

ParametersJSON Schema
NameRequiredDescriptionDefault
appsYesApp IDs or apps.apple.com URLs to compare, e.g. ['570060128', 'https://apps.apple.com/us/app/babbel/id829587759'].
countryNoISO 3166-1 alpha-2 storefront all apps are compared on, e.g. 'us', 'de', 'jp'. One call always uses a single storefront.us

Output Schema

ParametersJSON Schema
NameRequiredDescription
appsYes
metaYes
errorsNo
sourcesYes

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint, openWorldHint, idempotentHint. Description adds valuable disclosure of error handling: returns per-app errors and partial failures. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose, no filler. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given low complexity, existence of output schema, and rich annotations, description covers necessary behavioral aspects (error handling) and use case. It is complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with parameter descriptions describing formats and defaults. Description does not add additional semantic value beyond schema for parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states verb 'Fetch', resource 'app profiles', and scope 'multiple apps in batch' for side-by-side comparison. Distinguishes from siblings like get_app_store_app (single) and search_app_store (search).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies use case for competitor comparison. Mentioning that apps that fail do not fail whole call gives usage context. Lacks explicit when-not-to-use or alternatives, but context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

digest_app_store_reviewsDigest App Store reviewsA
Read-only

Fetch up to limit reviews and compress them into a structured digest (themes, complaints, praise, sentiment) via MCP sampling, so hundreds of reviews never enter your context. Works across storefront languages - the digest is always English. Requires a client that supports MCP sampling (or a server-side API-key fallback); use get_app_store_reviews for the raw reviews instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNo'most_recent' or 'most_helpful'.most_recent
focusNoOptional steer for the digest, e.g. 'pricing complaints' or 'onboarding friction'.
limitNoMax reviews to digest (10-500).
countryNoISO 3166-1 alpha-2 storefront code, e.g. 'us', 'de', 'jp'. Defaults to the country in the URL if one was passed, else 'us'.
app_id_or_urlYesNumeric App Store app ID or a full apps.apple.com URL.

Output Schema

ParametersJSON Schema
NameRequiredDescription
metaYes
app_idYes
digestYesLLM-compressed representation of a review set (data reduction, not ground truth - quotes may be translated/paraphrased).
sourcesYes
reviews_consideredYes

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds crucial behavioral context: it uses MCP sampling to compress reviews, the digest is always English regardless of storefront language, and it requires sampling support. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is only three sentences, front-loaded with the core action. Every sentence serves a purpose: function, differentiation, and requirement. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool complexity (5 parameters, output schema exists), the description fully covers what the tool does, its output format, language behavior, and usage constraints. It is complete for an agent to decide to invoke this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description echoes the `limit` parameter and mentions the digest language, but does not add substantial new meaning beyond the schema. The `focus` parameter, for example, is only described in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool fetches reviews and compresses them into a structured digest (themes, complaints, praise, sentiment) via MCP sampling. It explicitly distinguishes from the sibling tool get_app_store_reviews by advising to use that for raw reviews. The verb 'digest' and resource 'App Store reviews' are specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use (to avoid context overload), when not to use (when raw reviews are needed, use get_app_store_reviews), and requirements (client must support MCP sampling or have server-side fallback). This provides explicit guidance on tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_app_store_appGet App Store app profileA
Read-onlyIdempotent

Fetch the full public App Store profile for one app by numeric ID or apps.apple.com URL. Page-sourced fields (subtitle, has_iap, privacy) are best-effort; set include_page_data=false to skip that second request. Set include_raw=true to also get Apple's unmodified lookup payload (large - only when normalized fields are not enough).

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoISO 3166-1 alpha-2 storefront code, e.g. 'us', 'de', 'jp'. Defaults to the country in the URL if one was passed, else 'us'.
include_rawNoAlso return Apple's unmodified lookup payload under `raw` (large - only when normalized fields are not enough).
app_id_or_urlYesNumeric App Store app ID (e.g. '570060128') or a full apps.apple.com URL.
include_page_dataNoAlso fetch subtitle, has_iap, and privacy labels from the public App Store page (best-effort, one extra request).

Output Schema

ParametersJSON Schema
NameRequiredDescription
appYes
rawNo
metaYes
sourcesYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description adds valuable behavioral context: page-sourced fields are best-effort, include_page_data triggers an extra request, and include_raw returns a large payload to be used sparingly. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four sentences, front-loaded with the main action, and every sentence adds value. No redundant or unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of a thorough input schema, output schema, and annotations covering read-only and idempotent behavior, the description covers the main purpose and optional behaviors well. It could mention when to prefer sibling tools, but overall it provides sufficient context for an agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and descriptions are already good, but the description adds extra nuance: app_id_or_url can be numeric or URL, country defaults to URL's country or 'us', include_raw is 'large - only when normalized fields are not enough', and include_page_data is 'best-effort, one extra request'. This enhances understanding beyond schema alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states 'Fetch the full public App Store profile for one app by numeric ID or apps.apple.com URL', using a specific verb and resource. It clearly differentiates from sibling tools like search_app_store, get_app_store_reviews, etc., by focusing on a single app's profile.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear guidance on when to use the tool (for one app by ID or URL) and explains optional parameters (include_page_data, include_raw) with their trade-offs. However, it does not explicitly contrast with sibling tools or state when not to use this tool, e.g., when to use search instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_app_store_chartsGet App Store chartsA
Read-onlyIdempotent

Fetch ranked top-chart apps for a storefront. Best-effort: sourced from an undocumented Apple RSS feed.

ParametersJSON Schema
NameRequiredDescriptionDefault
chartNoWhich chart to fetch: 'top-free', 'top-paid', or 'top-grossing'.top-free
limitNoMax entries to return (1-100).
countryNoISO 3166-1 alpha-2 storefront code, e.g. 'us', 'de', 'jp'.us
categoryNoOptional filter - a numeric App Store genre ID, or one of: books, business, developer-tools, education, entertainment, finance, food-drink, games, graphics-design, health-fitness, lifestyle, magazines-newspapers, medical, music, navigation, news, photo-video, productivity, reference, shopping, social-networking, sports, stickers, travel, utilities, weather. Omit for the overall chart.

Output Schema

ParametersJSON Schema
NameRequiredDescription
metaYes
chartYes
entriesYes
sourcesYes
categoryNo

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (readOnlyHint, openWorldHint, idempotentHint), the description adds critical context: the tool relies on an undocumented feed and is best-effort. This discloses potential flakiness not captured by annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first states the action, second adds a crucial reliability caveat. No extraneous words, and the key information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema (not shown but noted), the description covers what the tool does, its parameters, and a behavioral caveat. It is sufficient for an agent to understand and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds little meaning beyond the input schema, which already has 100% coverage with clear descriptions for all 4 parameters. The tool's overall purpose is stated, but parameter details are not enhanced.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Fetch') and clear noun ('ranked top-chart apps') and identifies the scope ('for a storefront'), clearly distinguishing it from sibling tools that handle individual apps, reviews, or search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description states the data is 'best-effort' and from an 'undocumented Apple RSS feed', which advises agents to expect possible unreliability. However, it does not explicitly say when to use this instead of alternatives like search_app_store.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_app_store_reviewsGet App Store reviewsA
Read-onlyIdempotent

Fetch recent public customer reviews for an app. Best-effort: sourced from an undocumented Apple feed capped at ~500 reviews per storefront, with a small page-sourced fallback when the feed is empty. Reviews are per-country.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNo'most_recent' or 'most_helpful'.most_recent
limitNoMax reviews to return (1-500; Apple caps the underlying feed at ~500 per storefront regardless of this value).
countryNoISO 3166-1 alpha-2 storefront code, e.g. 'us', 'de', 'jp'. Defaults to the country in the URL if one was passed, else 'us'.
app_id_or_urlYesNumeric App Store app ID or a full apps.apple.com URL.

Output Schema

ParametersJSON Schema
NameRequiredDescription
metaYes
app_idYes
reviewsYes
sourcesYes

TDQS

A4.3/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds significant behavioral context beyond annotations: best-effort sourcing, undocumented Apple feed, ~500 review cap per storefront, page-sourced fallback, and per-country data. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loads the main action, and conveys essential limitations without unnecessary detail. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema, the description does not need to explain return values. It covers behavior, limitations, and per-country scope, making it complete for a moderately complex tool with 4 parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All parameters are documented in the schema with clear descriptions. The tool description adds context about the feed cap and fallback, which indirectly relates to limit and country, but does not significantly enhance meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool fetches recent public customer reviews for an app, specifies it is per-country and best-effort, and distinguishes it from sibling tools like compare_app_store_apps and digest_app_store_reviews by focusing on raw review retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use (fetch reviews) and notes limitations (best-effort, capped feed, fallback), but does not explicitly compare with siblings or provide when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_app_store_screenshotsGet App Store screenshotsA
Read-onlyIdempotent

Fetch an app's App Store screenshots as actual images, so you can analyze visual positioning, onboarding style, and paywall design directly. Returns up to limit screenshots as image content blocks.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax screenshots to return (1-8); each is a full image in context, so keep this small.
deviceNoWhich screenshot set to fetch: 'iphone' or 'ipad'.iphone
countryNoISO 3166-1 alpha-2 storefront code, e.g. 'us', 'de', 'jp'. Defaults to the country in the URL if one was passed, else 'us'.
app_id_or_urlYesNumeric App Store app ID or a full apps.apple.com URL.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, idempotent, and open-world hints. The description adds that it returns up to 'limit' screenshots as image content blocks and mentions each is a full image in context, advising to keep the limit small. This complements the annotations without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise—two sentences that front-load the main purpose and include key details about return type and usage advice. No superfluous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of output schema, the description clarifies that the tool returns image content blocks, but does not specify the format (e.g., base64, URL). It is mostly complete but could be slightly more explicit about the return structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents parameters well. The description adds value by explaining the return behavior related to the 'limit' parameter and the purpose of screenshots, enhancing meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool fetches an app's App Store screenshots as actual images, and specifies the use case of analyzing visual positioning and design. It is distinct from sibling tools which handle reviews, charts, and text data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for visual analysis but does not explicitly contrast with sibling tools or provide guidance on when to avoid using this tool. The decision to use it is left to the agent without further context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_app_storeSearch the Apple App StoreA
Read-onlyIdempotent

Search Apple App Store apps by keyword. Returns slim results (id, name, developer, rating, price) - use get_app_store_app for the full profile of a specific app.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (1-50).
queryYesKeyword(s) to search for, e.g. 'language learning'.
countryNoISO 3166-1 alpha-2 storefront code, e.g. 'us', 'de', 'jp'.us

Output Schema

ParametersJSON Schema
NameRequiredDescription
metaYes
queryYes
resultsYes
sourcesYes

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, so the safety profile is covered. Description adds that results are 'slim' and lists included fields (id, name, developer, rating, price), which is useful beyond annotations. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no fluff. Front-loaded with purpose and action. Every sentence serves a purpose: first defines what it does and what it returns, second directs to alternative for more detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 3 parameters, all documented in schema, and output schema exists (as per context signals), the description provides enough context: purpose, return shape, and when to use alternative. A minor gap is that it doesn't mention the country or limit filtering, but those are in schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema has 100% description coverage, so baseline is 3. Description mentions 'by keyword' which aligns with the query parameter but does not add meaning for limit or country beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it searches Apple App Store by keyword and returns slim results. It distinguishes from sibling get_app_store_app by noting the latter provides full profiles. Specific verb 'Search' + resource 'Apple App Store apps'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to use get_app_store_app for full profile when needed, guiding when to use this slim version vs the alternative. Could note other siblings like get_app_store_charts for different use cases, but current guidance is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updatesv0.1.0
    • First observedcompare_app_store_apps
    • First observeddigest_app_store_reviews
    • First observedget_app_store_app
    • First observedget_app_store_charts
    • First observedget_app_store_reviews
    • First observedget_app_store_screenshots
    • First observedsearch_app_store

TDQS

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct aspect of App Store data: batch profiles, individual profiles, search, charts, raw reviews, review digests, and screenshots. No overlap in purpose.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case, with 'app_store' as the common noun. Verbs like get, search, compare, digest are clear and predictable.

Tool Count5/5

Seven tools cover the essential App Store operations without being too few or excessive. The scope is well-scoped for a focused server.

Completeness4/5

Core CRUD-like operations are present (get, search, compare), along with reviews and screenshots. Minor gap: no developer info or historical ranking data, but the main use cases are well covered.

Maintenance

ActivitySlowing
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that provides comprehensive market intelligence by analyzing data from both the Apple App Store and Google Play Store, enabling users to research apps, track market trends, study competitors, and understand user feedback across mobile marketplaces.
    20
    49
    25
    MIT
  • A
    license
    B
    quality
    B
    maintenance
    MCP server that scrapes app data from Google Play and Apple App Store, providing tools for search, details, reviews, and similar apps.
    8
    39
    MIT

Latest Blog Posts

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/LaurMost/appstore-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server