Skip to main content
Glama
Tchoow

rybbit-super-mcp

by Tchoow

Page Titles

rybbit_get_page_titles
Read-onlyIdempotent

Retrieve page titles with visit counts, percentages, and average time on page to measure content engagement. Returns title, pathname, visits, percentage, and avg time.

Instructions

Get page titles with visit counts, percentages, and average time on page. Useful for understanding content engagement. Returns title, pathname, visits, percentage, and avg time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, 1-indexed (default: 1)
limitNoResults per page (default: 20-50 depending on endpoint, max 200)
siteIdYesSite ID (numeric ID or domain identifier)
endDateNoEnd date in ISO format (YYYY-MM-DD)
filtersNoArray of filters. Example: [{parameter:'browser',type:'equals',value:['Chrome']},{parameter:'country',type:'equals',value:['US','DE']}]
timeZoneNoIANA timezone (e.g., Europe/Prague). Default: UTC
startDateNoStart date in ISO format (YYYY-MM-DD)
pastMinutesEndNoAlternative to dates: minutes ago end (default 0 = now)
pastMinutesStartNoAlternative to dates: minutes ago start (e.g., 60 = last hour)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already carry the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false), so the bar is lower. The description adds value by disclosing the return shape ('Returns title, pathname, visits, percentage, and avg time') absent an output schema. However, it does not disclose behavioral quirks such as pagination defaults, the date-range vs. pastMinutes alternative, or the UTC default timezone. 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.

Conciseness4/5

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

Three short sentences with the core purpose front-loaded, followed by usage context and return shape. Each sentence earns its place, though 'Useful for understanding content engagement' is the weakest of the three and only modestly informative. Overall appropriately sized with no wasted words.

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

Completeness3/5

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

For a 9-parameter read-only tool with no output schema, the description plus fully-covered schema handles most essentials. Gaps remain: return value units/formats are unspecified (percentage scale, avg time unit), no routing guidance among sibling reporting tools is given, and the date/pastMinutes exclusivity and timezone default are left to the schema. Adequate but not complete for an agent choosing among many analytics endpoints.

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 the baseline is 3; the schema already documents defaults, formats, the filter dimension enum, and a worked filter example. The description adds nothing about parameters beyond naming the output fields, which does not compensate or extend the schema. A 3 is correct since the schema does the heavy lifting.

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 uses a specific verb ('Get'), identifies the resource ('page titles'), and enumerates the metrics returned (visit counts, percentages, average time on page) plus the exact return fields (title, pathname, visits, percentage, avg time). This is clear and distinct from most siblings, though it does not explicitly differentiate itself from overlapping reporting tools like get_overview or get_metric, which keeps it from a 5.

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?

'Useful for understanding content engagement' provides an implied usage context, but there is no explicit guidance on when to choose this over the many sibling analytics tools (get_overview, get_metric, get_session_locations, get_outbound_links). No alternatives are named and no exclusions are stated, leaving the agent to infer when page-level engagement reporting is the right call.

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