Skip to main content
Glama
Tchoow

rybbit-super-mcp

by Tchoow

Event Properties

rybbit_get_event_properties
Read-onlyIdempotent

Retrieve property breakdowns for a custom event to see distinct keys, values, and counts for deeper analytics.

Instructions

Get property breakdowns for a specific custom event. Returns the distinct property keys and values with counts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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
eventNameYesEvent name to get properties for
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.5/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 covered. The description adds a modest behavioral detail about the return shape, but does not disclose anything like response limits, count semantics, or other operational behavior beyond what the annotations imply.

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?

A single sentence that front-loads the action ('Get property breakdowns') and states the output. No filler or redundancy.

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?

With no output schema, the description gives only a minimal return-shape statement and does not clarify whether counts are event counts, unique users, or something else. The 8-parameter schema is covered, but for a read-only analytics tool the description could offer more context on date-range behavior and response semantics.

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 already documents all eight parameters. The description adds no parameter-specific meaning beyond confirming the 'eventName' is a custom event, so it stays at the baseline.

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 and resource ('Get property breakdowns') and clarifies the output ('distinct property keys and values with counts'), so an agent knows what the tool returns. It is clear but does not explicitly distinguish itself from similar siblings like rybbit_get_event_timeseries or rybbit_get_user_event_breakdown.

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 for retrieving property-level breakdowns for a named custom event, but it provides no explicit when-to-use vs alternatives or exclusion criteria. An agent must infer the appropriate context from the resource wording.

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