Skip to main content
Glama

version-truth

Get Product

get_product
Read-onlyIdempotent

All release cycles for a product, newest first: latest patch version, release date, LTS status/date, end-of-life date, and end of active support. Answers: what is the CURRENT version of X? Which major versions are still supported? When does version Y reach EOL? Use exact slugs from list_products (e.g. nodejs, python, django, postgresql, ubuntu, amazon-eks).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
productYesProduct slug from list_products, e.g. 'nodejs', 'python', 'react', 'postgresql'

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish this as a safe read-only, idempotent operation. The description adds valuable behavioral context by specifying ordering (newest first) and the exact data fields returned. It does not discuss pagination or response envelope, but for this simple tool the added transparency is solid.

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 compact, front-loaded with the core behavior, and every sentence serves a purpose: first explains output, second lists use cases and input guidance. There is no filler or repetition beyond acceptable reinforcement of the slug requirement.

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

Completeness4/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 compensates by listing key fields, ordering, and the questions it answers. It is complete enough to invoke correctly and interpret results for common versioning/EOL tasks, though it could be slightly richer about the exact response structure or pagination.

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 schema already fully describes the product parameter as a slug from list_products with examples, so the description adds little new semantic value beyond a few extra examples and emphasis on exact slugs. This meets the baseline for high schema coverage without meaningfully extending it.

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 clearly states the tool returns all release cycles for a product, newest first, with specific fields like latest patch version, LTS status, and EOL date. It also lists concrete question types it answers, which distinguishes it from siblings like list_products and get_cycle.

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 clear use cases, such as finding the current version or EOL date, and explicitly instructs the agent to use exact slugs from list_products with examples. It does not explicitly contrast with get_cycle, so it lacks an exclusion clause for that sibling, but the guidance is still strong.

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.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: listing products, getting all cycles for a product, and getting a single specific cycle. The descriptions explicitly state when to use each, reducing ambiguity for agents.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: get_cycle, get_product, list_products. The verbs are distinct and the nouns clearly indicate the resource type, and the pattern is uniform.

Tool Count4/5

With only 3 tools, the count is minimal but appropriate for a focused purpose: querying version information. It covers the essential operations (list, get all, get one) without unnecessary bloat, though it's on the low end of the ideal range.

Completeness4/5

The tool surface covers the core workflow: discover products, retrieve product cycles, and drill into a specific cycle. It lacks update/create operations, which is fine for a read-only API, but might miss advanced queries like searching for a specific version across products, though the current set covers the main use cases.

Resources