Skip to main content
Glama
Tchoow

rybbit-super-mcp

by Tchoow

Outbound Links

rybbit_get_outbound_links
Read-onlyIdempotent

Retrieve outbound link click counts for a site to see which external URLs users click and how often.

Instructions

Get outbound link clicks tracked on the site. Shows which external URLs users are clicking and how often.

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

A3.8/5.0
Behavior3/5

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

Annotations already carry the safety profile (readOnlyHint, idempotentHint, destructiveHint=false), and the description aligns with them. It adds domain context — clicks on external URLs with frequency — but not deeper behavior such as how outbound clicks are attributed, aggregation granularity, or whether data is sampled.

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, zero waste: the first delivers the action and resource, the second explains the return value. The core scoping phrase 'external URLs' is front-loaded.

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?

For a filtered-list reporting tool, the description plus the rich 100%-covered schema and safety annotations cover the essentials: data domain, common params, and safety profile. Minor gaps remain — no output schema means the response shape is only hinted at ('external URLs... how often'), and there's no note on how outbound link tracking is configured or enabled.

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%, including detailed docs for siteId, page/limit, date alternatives (startDate/endDate vs pastMinutesStart/pastMinutesEnd), timeZone, and the filter dimension enum with a user_id caveat. The description adds no parameter-specific meaning beyond the schema, so baseline 3 applies.

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?

States a specific verb and resource: 'Get outbound link clicks tracked on the site,' and clarifies the value with 'Shows which external URLs users are clicking and how often.' The resource (external link clicks) is semantically distinct from the 47 sibling analytics tools like get_overview and get_metric.

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 use case is implied by the domain — outbound link click analytics — but the description never explicitly says when to prefer this over siblings such as get_metric, get_events, or get_overview, nor does it state exclusions. An agent must infer the boundary from the term 'external URLs' alone.

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