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
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 3 of 3 tools scored.
The three tools have clearly distinct core purposes: listing product metadata, searching across the catalog, and retrieving a specific product's new releases. There is mild overlap between search_releases and whats_new (both deal with releases), but the descriptions make the scope clear: one is catalog-wide search, the other is product-specific updates.
list_products and search_releases follow a consistent verb_noun pattern, but whats_new deviates by using a noun phrase instead of an action verb. This minor inconsistency is not chaotic and the names remain intuitively readable.
With only 3 tools, the server is tightly scoped for its purpose of tracking release notes. Each tool earns its place, covering browsing, searching, and retrieving updates without unnecessary bloat.
The service covers the essential read operations: listing products, searching releases, and fetching what's new per product. A minor gap is the lack of a direct endpoint to fetch the full release history for a single product without the since_version filter, but search_releases and whats_new together cover most practical needs.
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 |
|---|---|---|---|
| query | No | Filter by name, e.g. "terminal" or "jetbrains". | |
| category | No | Limit results to one product category. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, covering safety. The description adds behavioral context by revealing response contents (slugs, categories, platforms) and filtering behavior, which is useful beyond what annotations provide.
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, concise sentence that front-loads the main purpose and includes key details (filters, returned fields). Every word earns its place.
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 simple, read-only list tool with two optional parameters and no output schema, the description covers purpose and filtering adequately. It provides enough context to select and invoke the tool correctly, though it could note any pagination or response limits if relevant.
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%, so the schema already describes both parameters. The description's mention of filtering by category and name aligns with the schema but adds no new meaning or detail beyond it.
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 the tool lists tracked products with slugs, categories, and platforms. It specifies the resource ('products') and action (list/filter), and the mention of 'products' distinguishes it from sibling tools like search_releases.
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 implies usage by mentioning filters ('Filter by category and/or a name query') but does not explicitly state when to use this tool versus alternatives or any exclusions. It gives clear context but lacks direct 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. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds useful behavioral context by clarifying the full-catalog scope and that results include permalinks, which goes beyond the structured metadata without contradicting it.
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 concise sentences provide the essential scope and output details without filler. Every sentence earns its place, and the description is front-loaded with the primary action.
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 simple search tool with 2 well-documented parameters, read-only annotations, and no output schema, the description sufficiently conveys what is searched, what is returned, and that results include permalinks. No critical missing context for an AI agent to use it correctly.
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 already covers both parameters with 100% description coverage: query is fully described and category has an enum plus description. The tool description adds no additional parameter-level meaning, so the baseline score 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 a specific action ('full-catalog search') across two resources (product names and release history) and states the return type (matching products and releases with permalinks). This distinguishes it from siblings like list_products and whats_new, which are listing and recent-changes tools respectively.
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 implies this is the tool for searching the entire catalog rather than listing or browsing, giving context for when to use it. However, it does not explicitly state when not to use list_products or whats_new, nor does it provide any exclusion criteria or alternative-tool guidance.
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. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the description only needs to add behavioral nuance. It adds that since_version filters to releases shipped after a known version and that results include per-category change counts. This is useful beyond the annotations, though version-matching edge cases are left to the schema.
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 short sentences, front-loaded with the core purpose and immediately giving the key parameter guidance. Every word earns its place.
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 simple scope, the description is adequate: it names the resource (product releases), the data (notes, per-category counts), and the main optional filter. Without an output schema, it doesn't detail the exact response shape, but the description provides enough for selection and likely invocation.
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 already documents all parameters. The description repeats the core meaning of since_version ('the version you run') but adds no new semantic detail 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 the tool surfaces a product's newest releases with notes and can filter by since_version. It differentiates from list_products (product catalog) and somewhat from search_releases (release lookup), though it doesn't explicitly name alternatives.
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?
This is a read-only tool for fetching product release notes. It gives a clear use context ('newest releases with notes') and explains when to pass since_version. It doesn't explicitly state when not to use it or mention sibling alternatives, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
- Alicense-qualityAmaintenanceProvides 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.14MIT

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