Skip to main content
Glama
epolat

io.github.epolat/rankjot-mcp

by epolat

check_rank

Check where a domain ranks on Google for a keyword in a specific country. Get the position, ranking URL, and top 10 organic results, or an error if the domain is not found.

Instructions

Check where a domain ranks on Google for a keyword.

Args: domain: the site to look up, e.g. "example.com" (scheme/www/path ignored). keyword: the search query to rank for. country: ISO country code for the Google market (default "us"), e.g. "gb", "de". Rankings differ by country, so pass the market the user cares about.

Returns a dict with the 1-based position (null if the domain isn't in the results checked), the ranking url, the top-10 organic results, and the remaining quota. Failures come back as a dict with an error field.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYes
countryNous
keywordYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and covers key behavior: input normalization ('scheme/www/path ignored'), the exact return shape including 'position', 'url', 'results', and 'quota', and failure behavior via an 'error' field. It does not explicitly state that this is a read-only operation, but 'check' plus the described output strongly implies it.

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 tightly structured: a one-sentence summary, an Args block covering each parameter with examples, and a return-shape paragraph. No sentence is redundant, and the most important scoping facts are 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?

There is no output schema, yet the description fully specifies what the tool returns, including the null position case and failure dict. It also states the scope ('top-10 organic results') and quota reporting, so an agent can invoke and interpret the result correctly without additional context.

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

Parameters5/5

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

Schema coverage is 0%, so the description must fully explain each parameter, and it does: domain is exemplified and normalized, keyword is defined as the search query, and country is given with ISO format, a default, and market-dependence rationale. All three parameters are meaningfully documented.

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 opening sentence, 'Check where a domain ranks on Google for a keyword,' uses a specific verb, resource, and search context. It clearly distinguishes the tool's function even without sibling tools to differentiate from.

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 gives actionable usage context: 'Rankings differ by country, so pass the market the user cares about,' which tells the agent how to set the country parameter based on user intent. It does not mention alternatives, but no siblings exist, so exclusion guidance is not needed.

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

Deploy Server

Other Tools