Skip to main content
Glama
Tchoow

rybbit-super-mcp

by Tchoow

Overview Time Series

rybbit_get_overview_timeseries
Read-onlyIdempotent

Fetch overview metrics as time-series data with configurable buckets from minute to month, returning data point arrays for trend charting.

Instructions

Get overview metrics as time-series data with configurable time buckets (minute, hour, day, week, month). Returns arrays of data points for charting trends.

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.6/5.0
Behavior3/5

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

Annotations already communicate that the operation is read-only, idempotent, and non-destructive. The description adds that it returns arrays of data points, which is useful but does not explain output structure or default behavior such as date-range fallbacks. It does not contradict the 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?

The description is short, front-loaded with the verb and resource, and has no filler. The parenthetical bucket list is somewhat redundant with the schema and omits valid enum values, which slightly reduces its value, but overall it is concise and readable.

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?

The tool has eight parameters and no output schema, yet the description only vaguely says it returns 'arrays of data points.' It does not clarify what each data point contains, how date parameters combine, or how this differs from sibling timeseries tools. The rich schema mitigates this, but the description alone is only minimally complete.

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 schema fully documents parameters and enums. The description adds no substantive parameter meaning beyond naming a few bucket options, and it omits several valid bucket values like five_minutes and year. This meets the baseline for fully documented schema parameters.

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 names a specific verb and resource: get overview metrics as time-series data. The time-series qualifier distinguishes it from the non-timeseries sibling rybbit_get_overview, and 'overview metrics' separates it from event-specific or performance-specific timeseries siblings. The intent is immediately clear.

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 phrase 'for charting trends' implies the main use case, but the description does not explicitly say when to choose this tool over alternatives like rybbit_get_overview or rybbit_get_event_timeseries. No when-not-to-use guidance or exclusions are provided.

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