Skip to main content
Glama
Tchoow

rybbit-super-mcp

by Tchoow

Check Site Has Data

rybbit_check_site_has_data
Read-onlyIdempotent

Verify tracking script installation by checking for recorded events on a site before running analytics queries.

Instructions

Check if a site has any recorded events. Returns a boolean. Useful for verifying that the tracking script is properly installed before querying analytics.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteIdYesSite ID (numeric ID or domain identifier)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare this as read-only, idempotent, and non-destructive. The description adds clarity by stating the tool returns a boolean and frames its behavioral role as a verification step, which is useful beyond the annotations alone.

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?

The description is two sentences with no wasted words. It front-loads the core function and return type, then adds the practical use case, making it easy for an agent to scan and act on.

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

Completeness5/5

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

For a simple single-parameter boolean check with strong annotations and full schema coverage, the description provides everything an agent needs: what it checks, what it returns, and when to use it. There are no meaningful gaps.

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?

The input schema fully documents the only parameter, siteId, including its type and acceptable forms. The description does not need to add parameter details, so the baseline score of 3 is appropriate.

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 clearly states the tool checks whether a site has any recorded events and that it returns a boolean. It names a specific resource and outcome, though it does not explicitly distinguish itself from related siblings like rybbit_get_site_event_count or rybbit_list_events.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a concrete use case: verifying that the tracking script is properly installed before querying analytics. It implies when to use this tool but does not mention alternatives or exclusion conditions, so it stops short of full routing guidance.

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