Skip to main content
Glama

Server Details

Changelogs for apps, games and operating systems. Ask what shipped since the version you run.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Tool DescriptionsA

Average 3.8/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation4/5

Each tool targets a distinct purpose: listing products, searching releases, and retrieving a product's latest releases. The overlap between search_releases and whats_new is manageable because descriptions clarify search vs. product-specific retrieval.

Naming Consistency3/5

Two tools follow the verb_noun pattern (list_products, search_releases), but 'whats_new' breaks the pattern with a noun-phrase name. While readable, the inconsistency in naming style is noticeable.

Tool Count5/5

Three tools is well-scoped for a release-notes tracking server. Each tool covers a distinct need without unnecessary bloat, and the count falls within the ideal 3-15 range.

Completeness5/5

The server covers the core read-only operations: discovering products, searching across release history, and getting a specific product's newest releases. No obvious gaps exist for its stated purpose, as it does not require write operations.

Available Tools

3 tools
list_productsList tracked productsA
Read-onlyIdempotent
Inspect

The products What's New tracks release notes for, with slugs, categories and platforms. Filter by category and/or a name query.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNo"popular" ranks by current audience popularity — outside signals (stars, downloads, players) blended with this site's own readers — and answers "what are the most popular software right now?". Default is the curated catalog order (or search relevance when query is set, which ignores sort).
queryNoFilter by name, e.g. "terminal" or "jetbrains".
categoryNoLimit results to one product category.

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYesMatches before the cap.
productsYes
returnedYes
truncatedNo
Behavior3/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds minimal context about the output contents (slugs, categories, platforms), but since an output schema exists, this is redundant. It does not disclose additional behavioral detail such as sorting behavior or pagination, and does not contradict annotations.

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, front-loaded with the core purpose and then a concise note on filtering. Every word earns its place, with no fluff or repetition of the tool name or schema details.

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?

Given the tool's simplicity, full schema descriptions, annotations, and an output schema, this description is complete enough. It clearly frames the resource and basic filtering, and the output schema handles return value details. No critical 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 detailed descriptions for all three parameters (sort, query, category). The description only mentions 'category and/or a name query', which is a subset of the parameters and adds no additional semantic meaning beyond what the schema already provides. 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 clearly states this tool lists the products that What's New tracks release notes for, with slugs, categories, and platforms. The verb 'list' plus the resource scope distinguishes it from sibling tools like search_releases and whats_new.

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 gives filter instructions ('Filter by category and/or a name query') but does not explicitly say when to use this tool versus alternatives like search_releases or whats_new. Usage is implied by the purpose, so it falls at 'implied usage' rather than explicit guidance.

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

search_releasesSearch products and release notesA
Read-onlyIdempotent
Inspect

Full-catalog search across product names and release history. Returns matching products and releases with permalinks.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch products and release notes. At least 2 characters.
categoryNoLimit results to one product category.

Output Schema

ParametersJSON Schema
NameRequiredDescription
noteNoPresent when nothing matched.
queryYesThe query as searched — trimmed and capped.
categoryNoLimit results to one product category.
productsYes
releasesYes
Behavior3/5

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

Annotations already declare readOnlyHint and idempotentHint, indicating a safe read operation. The description adds context about full-catalog scope and permalink returns, which is useful but limited. No contradictions with annotations.

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?

Two short sentences, front-loaded with the core purpose and a clear return value. No fluff or unnecessary detail.

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?

For a search tool with an output schema present, the description covers scope and return values. It does not mention sorting or pagination, but these are likely covered by the output schema or are not essential for initial selection.

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 fully documents query (search products/release notes, min 2 chars) and category (optional limit). The description adds no additional parameter meaning beyond what the schema 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 clearly states it performs a full-catalog search across product names and release history, with a specific return of matching products and releases with permalinks. This distinguishes it as the search tool compared to siblings list_products and whats_new, which likely list or surface recent items.

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?

No explicit guidance on when to use this tool versus list_products or whats_new. The purpose is clear, but the description does not mention alternatives or exclusions, so usage is implied rather than stated.

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

whats_newWhat changed in a productA
Read-onlyIdempotent
Inspect

A product's newest releases with notes. Pass since_version (the version you run) to get only what shipped after it, with per-category change counts.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoReleases to return, default 10.
productYesProduct slug or name, e.g. "next-js" or "Next.js".
since_versionNoThe version you run. Returns only the releases above it in the history, matched exactly or as the same version spelled with fewer trailing zeros. A version we do not hold is reported as a miss rather than guessed into an ordering.

Output Schema

ParametersJSON Schema
NameRequiredDescription
notesNoHow the product or the version was resolved.
productYes
releasesYes
returnedYes
truncatedNo
newerCountNoReleases above the pinned version, before the limit.
changeCountsNoChange items across the whole span, even when truncated.
sinceVersionNoThe version you passed.
sinceVersionFoundNoWhether that version was found in the history. False means the releases below are the latest, not the ones after yours.
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint=false, and idempotentHint=true, establishing safety and non-mutating behavior. The description adds context about per-category change counts and the version-filtering semantics, which goes beyond the annotations. It does not contradict the annotations.

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 a single, focused sentence that front-loads the core purpose and then explains the key filtering parameter. Every part contributes meaning, with no filler or redundancy.

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?

Given the presence of a rich schema, output schema, and annotations, the description is sufficient for the tool's moderate complexity. It explains the primary action and the important since_version behavior, though it omits explicit sibling differentiation, which prevents a perfect score.

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 provides 100% coverage with detailed descriptions for all three parameters, including the since_version matching rule. The description echoes the since_version purpose ('the version you run') but adds no new information beyond what the schema already states, so the baseline of 3 applies.

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 identifies the tool as providing a product's newest releases with notes, which aligns with the title 'What changed in a product'. It does not use an explicit verb like 'Get' or 'List', and it doesn't directly distinguish itself from siblings, but the resource and intent are unambiguous.

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 explains the main usage pattern: pass since_version to filter releases shipped after a specific version. However, it doesn't provide explicit guidance on when to use this tool versus the sibling tools list_products or search_releases, nor does it mention any exclusions or alternatives.

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

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources