Skip to main content
Glama

Growth Rates

growth_rates
Read-onlyIdempotent

Compute period-over-period growth and CAGR for a numeric series. FREE.

Typical input {"values": [1000, 1100, 1320]} returns {"period_over_period_pct": [10.0, 20.0], "total_change_pct": 32.0, "avg_growth_per_period_pct_cagr": 14.89}.

Use when one series is already in period order. Not for comparing two variants (ab_test) and not for projecting future periods (forecast_trend). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "need at least 2 values"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valuesYesOrdered numeric series, oldest first, at least 2 values, e.g. monthly revenue [1000, 1100, 1320].

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already provide readOnlyHint, idempotentHint, destructiveHint; description adds value by reinforcing idempotency with retry guidance and detailing error behavior ('never raises a protocol error — it returns {"error": ...}'), exceeding what annotations offer. No contradiction.

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?

Every sentence earns its place: purpose, example, usage guidelines, error handling, idempotency. Front-loaded with the key action and typical input/output. No redundancy or waste.

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 one-parameter tool with an output schema, the description covers purpose, input format, output fields, error behavior, and usage guidance. No gaps remain.

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% with a clear description of the single parameter. The tool description provides an example and output fields but adds no new semantic meaning beyond the schema. Baseline 3 is appropriate.

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 ('Compute period-over-period growth and CAGR') and resource ('numeric series'), and clearly distinguishes from siblings by naming alternative tools (ab_test, forecast_trend) and contexts.

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

Usage Guidelines5/5

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

Explicitly states when to use ('when one series is already in period order') and when not to ('Not for comparing two variants... not for projecting future periods'), with specific sibling tool names for both exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.8/5.0
Disambiguation5/5

Each tool addresses a distinct analytical task: A/B test, cohort retention, correlation, CSV profiling, forecasting, funnel analysis, and growth rates. There is no overlap, and the descriptions clearly state when to use each and what not to use it for.

Naming Consistency5/5

All tool names follow a consistent snake_case pattern with descriptive noun_noun combinations (e.g., ab_test, cohort_retention, growth_rates). No mixing of conventions or vague verbs.

Tool Count5/5

7 tools is a well-scoped set for a data analysis server. It covers a range of common statistical and data profiling tasks without being overwhelming or too sparse.

Completeness4/5

The tool surface covers core analytical needs: hypothesis testing, retention analysis, correlation, data profiling, forecasting, funnel analysis, and growth rates. Minor gaps exist (e.g., no general descriptive statistics beyond CSV profiling, no regression), but the set feels intentional and sufficient for typical data desk queries.

Resources