Skip to main content
Glama
Tchoow

rybbit-super-mcp

by Tchoow

Site Event Count

rybbit_get_site_event_count
Read-onlyIdempotent

Retrieve time-bucketed event counts by type (pageviews, errors, clicks, etc.) to analyze tracking volume and mix over any period. Use filters and granularity to pinpoint trends.

Instructions

Get time-bucketed event counts broken down by type: pageviews, custom events, performance, outbound, errors, button clicks, copy, form submits, input changes. Useful for understanding the volume and mix of tracking events over time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bucketNoTime bucket granularity (default: day). Use 'hour' for last 24h, 'week'/'month' for long ranges
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 declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well covered. The description adds output-structure context (time-bucketed counts by event type) but does not disclose additional behavioral traits like auth requirements, rate limits, or pagination. This is acceptable given the annotation coverage but not exceptional.

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 focused sentences with no filler. The main output is stated first, followed by a concise purpose statement. The enumeration of event types is dense but directly relevant to tool selection and invokes no unnecessary detail.

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 read-only analytics tool with a rich, fully documented schema, the description provides enough context to call it correctly. There is no output schema, so the description's explanation of time-bucketed counts by event type is essential and adequately covers the return shape. Minor ambiguity about how filters apply to the breakdown is addressed by the filter parameter documentation.

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 coverage is 100%, and each parameter has a meaningful description (e.g., bucket granularity, filters example, timeZone default). The tool description itself adds no parameter-level semantics beyond what the schema already provides; it only summarizes the output categories. 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.

Purpose5/5

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

The description states a specific action ('get'), a clear resource ('time-bucketed event counts'), and enumerates the breakdown types (pageviews, custom events, performance, etc.). This distinguishes it from generic event timeseries endpoints like rybbit_get_event_timeseries. The site-level scope is implied by the tool name and required siteId parameter.

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 includes a useful context line ('useful for understanding the volume and mix of tracking events over time'), which helps an agent infer when it might be relevant. However, it does not explicitly state when to prefer this tool over siblings such as rybbit_get_event_timeseries or rybbit_get_org_event_count, nor does it mention any exclusions.

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