What's New
Server Details
Changelogs for apps, games and operating systems. Ask what shipped since the version you run.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 3.8/5 across 3 of 3 tools scored.
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.
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.
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.
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 toolslist_productsList tracked productsARead-onlyIdempotentInspect
The products What's New tracks release notes for, with slugs, categories and platforms. Filter by category and/or a name query.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | "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). | |
| query | No | Filter by name, e.g. "terminal" or "jetbrains". | |
| category | No | Limit results to one product category. |
Output Schema
| Name | Required | Description |
|---|---|---|
| total | Yes | Matches before the cap. |
| products | Yes | |
| returned | Yes | |
| truncated | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 notesARead-onlyIdempotentInspect
Full-catalog search across product names and release history. Returns matching products and releases with permalinks.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search products and release notes. At least 2 characters. | |
| category | No | Limit results to one product category. |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | Present when nothing matched. |
| query | Yes | The query as searched — trimmed and capped. |
| category | No | Limit results to one product category. |
| products | Yes | |
| releases | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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 productARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Releases to return, default 10. | |
| product | Yes | Product slug or name, e.g. "next-js" or "Next.js". | |
| since_version | No | The 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
| Name | Required | Description |
|---|---|---|
| notes | No | How the product or the version was resolved. |
| product | Yes | |
| releases | Yes | |
| returned | Yes | |
| truncated | No | |
| newerCount | No | Releases above the pinned version, before the limit. |
| changeCounts | No | Change items across the whole span, even when truncated. |
| sinceVersion | No | The version you passed. |
| sinceVersionFound | No | Whether that version was found in the history. False means the releases below are the latest, not the ones after yours. |
Tool Definition Quality
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.
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.
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.
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.
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.
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
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceProvides a local, queryable mirror of changelogs from Anthropic and related AI dev tools, enabling agents to discover cross-product workflows and sync updates via MCP.29MIT

Modelmeterofficial
AlicenseNot gradedqualityCmaintenanceEnables AI agents to query model pricing, deprecations, and cost estimates via a machine-readable changelog of the AI stack.1MIT- AlicenseNot gradedqualityDmaintenanceGenerate professional changelogs from git history and suggest semver bumps, with optional AI enhancement via Claude.562MIT
- FlicenseNot gradedqualityDmaintenanceProvides access to Shopify Developer and Platform changelogs via RSS feeds, enabling search, category filtering, and retrieval of recent updates.1