Skip to main content
Glama

serp-metrics

Server Details

Impression-weighted SERP position, click projection on your own CTR curve, share of voice

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: one computes weighted average position, one projects clicks from a user-supplied CTR curve, and one computes share of voice. There is no overlap that would confuse an agent.

Naming Consistency3/5

All names use snake_case and are descriptive, but they mix noun phrases (impression_weighted_position, share_of_voice) with a verb phrase (project_clicks_from_ctr_curve). No consistent verb_noun pattern, yet names remain readable and predictable enough.

Tool Count5/5

3 tools is well within the ideal 3-15 range. Each tool addresses a distinct analytics need and earns its place without bloat or gaps.

Completeness4/5

The set covers core SERP analytics: position aggregation, click projection, and share-of-voice. A minor gap is the lack of a direct CTR-computation utility, but the tools are complementary and cover the main workflows without dead ends.

Available Tools

3 tools
impression_weighted_positionImpression-weighted average positionAInspect

Compute the impression-weighted average SERP position for a set of query rows, alongside the plain arithmetic mean and the gap between them. The arithmetic mean lets a 3-impression query count as much as a 30,000-impression one; the weighted figure describes where a typical impression actually happened. A positive weighting_shift means your high-volume queries rank worse than the unweighted average suggests.

ParametersJSON Schema
NameRequiredDescriptionDefault
rowsYesQuery rows.
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explains the mathematical behavior (weighted vs unweighted mean), defines weighting_shift, and interprets its meaning, which goes beyond a simple restatement. However, it does not mention any side effects, edge cases, or output structure.

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 concise sentences, each providing meaningful information: the computation, the rationale, and the interpretation of a key output. No word is wasted, and the structure flows logically.

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 a single parameter with a rich schema and no output schema. The description explains the core outputs conceptually and their interpretation, but it does not specify the exact return structure or handle potential edge cases. This is largely complete for a straightforward computation 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?

The schema already documents all fields within the rows parameter with 100% coverage. The description does not add per-parameter details beyond what the schema provides, but it does provide context on how the data is used (e.g., positions and impressions). This matches the baseline for high schema coverage.

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

Purpose4/5

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

The description clearly states the tool computes impression-weighted average SERP position, arithmetic mean, and the gap between them. It is specific and unambiguous, but it does not explicitly mention how it differs from sibling tools like share_of_voice or project_clicks_from_ctr_curve, so it lacks explicit sibling differentiation.

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 the tool is used when analyzing query rows with position and impression data, but it does not provide explicit when-to-use guidance or mention any alternatives. The context is understandable but no exclusions or clear alternatives are stated.

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

project_clicks_from_ctr_curveProject clicks against a supplied CTR curveAInspect

Project how many clicks a set of query rows would earn at a target position instead of their current position, using a CTR curve THAT YOU SUPPLY. This server deliberately ships no built-in CTR table: every published average-CTR-by-position table is a third-party estimate over someone else's traffic, so applying one silently would disguise a guess as a measurement. Pass your own measured curve (Search Console clicks/impressions by position is the honest source). Positions between curve points are linearly interpolated; positions beyond the curve clamp to the last point rather than extrapolate, and are counted in clamped_row_count. If any row carries observed clicks, the output also reports how far the supplied curve is from your reality.

ParametersJSON Schema
NameRequiredDescriptionDefault
rowsYesQuery rows.
ctr_curveYesRequired. Map of position to click-through rate as a 0-1 fraction, e.g. {"1":0.28,"2":0.15,"3":0.10,"10":0.02}. Supply your own measured values.
target_positionNoTarget position applied to every row that does not carry its own.
Behavior5/5

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

With no annotations provided, the description carries the full burden and does so admirably. It discloses that there is no built-in CTR table, that positions between curve points are linearly interpolated, that positions beyond the curve clamp and are counted in clamped_row_count, and that calibration output reports deviation from observed clicks. This goes far beyond a basic summary.

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 front-loaded with a clear purpose, followed by a concise rationale, guidance, and key behavioral details. Every sentence earns its place; the tone is direct and avoids fluff. At roughly 150 words, it is appropriately sized for the tool's complexity.

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?

For a tool with nested objects, no annotations, and no output schema, the description covers all critical context: purpose, why there is no built-in curve, how to source the curve, interpolation/clamping behavior, and diagnostic output. It even names clamped_row_count and calibration reporting. This is well-rounded and complete.

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 baseline is 3. The description adds meaning by emphasizing that the ctr_curve must be user-supplied and based on real measurements, and it clarifies behavior around interpolation/clamping that connects to the rows and curve parameters. It does not elaborate on target_position semantics beyond what the schema offers, but the overall context is 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 clearly states the tool's function: 'Project how many clicks a set of query rows would earn at a target position instead of their current position, using a CTR curve THAT YOU SUPPLY.' This is specific and the verb 'project' plus the resource 'clicks from CTR curve' distinguishes it from siblings like share_of_voice or impression_weighted_position.

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 strong contextual guidance: it explicitly instructs the user to supply their own measured curve, warns against built-in tables ('every published average-CTR-by-position table is a third-party estimate'), and suggests Search Console as an honest source. It does not explicitly exclude alternatives among sibling tools, so it stops short of a 5.

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

share_of_voiceShare of voice across a keyword setAInspect

Compute share of voice across competing entities over a keyword set. Reports impression share always, and, if you supply a CTR curve, a weighted visibility share that accounts for the fact that an impression at position 1 is not worth an impression at position 9. Impression share is share of the supplied set only and says nothing about keywords you did not supply.

ParametersJSON Schema
NameRequiredDescriptionDefault
entitiesYesOne entry per competitor per keyword, or pre-aggregated per competitor.
ctr_curveNoOptional caller-supplied position-to-CTR map, for weighted visibility.
Behavior4/5

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

With no annotations, the description carries the burden. It clearly states the always-on metric, the conditional weighted metric, and the interpretation caveat. It also explains the rationale for weighting (position 1 vs 9). It stops short of describing output structure or error cases, but the core behavior is transparent.

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 the main action, then conditional behavior, then an important limitation. Every sentence contributes meaning; 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 a moderate complexity with nested parameters and no output schema. The description covers the input semantics and the two possible metrics returned, and warns about the scope limitation. It doesn't detail the return format but that is not strictly required for a computation tool. It is reasonably complete for an agent to select and invoke 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?

Although schema coverage is 100%, the description adds meaning by explaining the function of the CTR curve and clarifying that entities can be per-keyword or pre-aggregated per competitor. It also explains when position is needed (when a CTR curve is supplied), which aligns with 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 uses the specific verb 'Compute' with the resource 'share of voice across competing entities over a keyword set', clearly distinguishing it from sibling tools focused on position weighting and click projection. It also specifies the exact metrics computed (impression share and optional weighted visibility share).

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?

It identifies a clear condition for using the weighted mode ('if you supply a CTR curve') and cautions that impression share is relative only to the supplied set. It does not explicitly name sibling tools as alternatives, but provides enough context to decide when to use the tool.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    B
    quality
    F
    maintenance
    GEO (Generative Engine Optimisation). This tool shows you exactly how AI search engines see your content - claim density, writing quality, E-E-A-T signals, extractability. Research-backed metrics that correlate with 40% higher AI citation rates.
    Last updated
    2
    29
    21
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    Enables analyzing SEO page performance using data from Google Search Console, Google Analytics, and PostHog to identify weak CTR, decaying rankings, and other issues, providing actionable recommendations.
    Last updated
    MIT
  • A
    license
    B
    quality
    B
    maintenance
    SEO audit and Google Search Console MCP server with 23 tools. Search analytics, URL inspection, Indexing API, Core Web Vitals (CrUX), striking distance keywords, keyword cannibalization detection, branded query analysis, and automated site audits.
    Last updated
    30
    2
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources