Skip to main content
Glama
frrazer

roblox-analytics-mcp

by frrazer

list_dimension_values

Discover the actual values a metric's dimension can take over a date range, so you can build precise filters or interpret breakdown results.

Instructions

Discover the actual values a dimension takes for a metric in a universe over a date range, e.g. which Country codes, Platform names, FunnelName values, CustomEventName values, or Place IDs have data. Use the returned values in query_metrics filters or to understand breakdown results. Returns { values: [{ dimension, values: [{ value }] }] }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax values to return per dimension.
filterNoRestrict results to rows matching every filter. The dimension must be supported by the metric. Use list_dimension_values to discover valid values.
metricYesMetric name, case-sensitive, e.g. DailyActiveUsers, DailyRevenue, ForwardD1Retention, ClientCrashRate15m. Call list_metrics to see all names, their supported granularities, and their supported dimensions.
endTimeYesRange end, exclusive, RFC 3339 UTC, e.g. 2026-02-01T00:00:00Z.
startTimeYesRange start, inclusive, RFC 3339 UTC, e.g. 2026-01-01T00:00:00Z.
dimensionsYesDimension names to look up, e.g. ['Country'] or ['FunnelName', 'FunnelStep'].
universeIdYesThe Roblox universe (experience) ID. Found on the Creator Dashboard overview page.
granularityNoOptional bucket size.
pollTimeoutSecondsNoHow long to wait for a slow query before returning the pending operation (default 60). If the result comes back with done: false, pass its 'path' to get_operation later.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It does disclose the return shape and the read-only intent ('Discover'). However, it does not mention that slow queries may return a pending operation with done:false and a path for get_operation, even though pollTimeoutSeconds references this behavior. This is a notable behavioral gap.

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 three sentences: purpose with examples, downstream usage, and return shape. It is front-loaded, concise, and every sentence earns its place without unnecessary detail.

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 9 parameters and no output schema, the description needs to cover the result contract adequately. It provides the primary return shape, but omits the asynchronous pending-operation case (done:false / path / get_operation), which is relevant for correct invocation and result handling. Since the schema documents pollTimeoutSeconds, this is not fatal, but it leaves a gap.

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 baseline is 3. The description adds useful context about dimension value examples and how values feed query_metrics filters, but it does not add substantial parameter-specific meaning beyond what the schema already provides.

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 uses a specific verb and resource: 'Discover the actual values a dimension takes for a metric in a universe over a date range.' It gives concrete examples (Country codes, Platform names, FunnelName values, Place IDs), which clearly distinguish it from sibling tools like list_metrics, query_metrics, and get_operation.

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 explicitly tells the agent how to use the output: 'Use the returned values in query_metrics filters or to understand breakdown results.' This gives clear context for when the tool is valuable. It does not explicitly contrast with list_metrics or state when not to use it, so it falls slightly short of a 5.

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