Skip to main content
Glama

Get keyword rank

get_keyword_rank
Read-onlyIdempotent

Look up the current ranking of a specific Appskyline app for a keyword in a given store + country. Returns "App X ranks #N of M" or "not in top N" if the app does not appear in the scanned results.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
numNoHow many results to scan when looking for the app (default 50, max 200)
langNoTwo-letter language code (e.g. en, it)
termYesSearch term
appIdYesAppskyline app id
storeYesWhich store to check
countryNoTwo-letter country code (e.g. US, IT)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
appYes
langYes
rankYes
termYes
storeYes
statusYes
countryYes
resultsScannedYes

TDQS

A4.4/5.0
Behavior4/5

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

Given the readOnlyHint and idempotentHint annotations, the description still adds useful behavioral detail by describing the exact result string, including the boundary behavior: 'not in top N' if the app is absent from the scanned results. This clarifies how the optional num parameter affects the outcome.

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 a single, tightly worded sentence that front-loads the purpose, then provides the expected return format and edge-case behavior. Every clause adds value and there is no filler.

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?

The tool has strong annotations, an output schema, and a sufficiently descriptive parameter schema, so the description does not need to explain every return field. It covers the main lookup goal and the most important edge case (app not found), making it adequate for correct invocation.

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?

Although schema coverage is 100%, the description adds important meaning by clarifying that 'term' is the keyword, especially since the schema text for 'term' appears mislabeled as a language code. It also connects 'num' to the 'top N' behavior, which helps the agent understand the parameter's practical effect.

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 ('Look up') and identifies the exact resource: the current ranking of a specific Appskyline app for a keyword in a given store and country. It clearly distinguishes this from sibling tools such as get_keyword_history or get_keyword_overview by emphasizing 'current ranking.'

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 context is clear: this is the tool to use when you need a current, point-in-time rank for a specific app-keyword-store combination. It does not explicitly name alternatives or when not to use it, but the 'current ranking' phrasing makes the intended usage obvious enough.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Most tools cleanly split by entity: apps, keyords, store listing, reviews, search. Potential confusion exists between get_store_isting and get_store_metadata, and show_app_overview vs list_keywords, but the descriptions are sufficiently specific to guide selection.

Naming Consistency4/5

The set uses lowercase snake_case verb_noun patterns, with get_X for single resources, list_X for collections, add_keyword, search_store_results, and show_app_overview. The mixture of show/get is minor inconsistency, and list_google_play_reviews is a nice exception, but overall it's cohesive.

Tool Count5/5

The domain is built around app tracking, keyword research, store data, and engagement, and 13-14 tools is well within the sweet spot. Few tools feel obviously redundant, and each covers a distinct part of the ASO workflow.

Completeness3/5

The core read/query workflows are covered: list apps, list keywords, get rankings/history/volume, fetch store listing/metadata, and search. However, add_keyword is the only keyword mutator — there is no delete_keyword or update_keyword — creating a real dead-end for tracked-keyword management. Also review coverage is limited to Google Play alone.

Resources