isitdeprecated
Server Details
Check if an AI model is deprecated, retiring, or silently changed price or context window.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolscheck_modelAInspect
Check whether an AI model identifier is deprecated, retiring, or has silently changed (price, context window, capabilities). Accepts any spelling a provider or SDK uses, e.g. 'gpt-4-turbo', 'azure/gpt-4.1-mini', 'claude-opus-4-1-20250805'. Call this before writing a model identifier into code.
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model identifier to check |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses what the tool checks (deprecation, retirement, silent changes) and that it accepts any spelling. It does not mention return format or error behavior, but for a check tool this is adequate.
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?
Three concise sentences: what it does, examples, and when to use. No wasted words, every sentence contributes.
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 one-parameter tool with no output schema, the description provides enough context for an agent to select and invoke it. It could explain return values but that is not required given the clarity of purpose.
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 baseline is 3. The description adds value by explaining the parameter accepts any spelling and provides concrete examples, going beyond the schema's simple description.
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 checks whether an AI model identifier is deprecated, retiring, or silently changed. It explicitly distinguishes from siblings by focusing on a single identifier and mentions the specific resource (model identifier).
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 explicit guidance to call this tool before writing a model identifier into code. It does not mention when not to use it or explicitly name 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.
check_modelsAInspect
Check many model identifiers at once and report which are retired or scheduled for retirement. Use when auditing a codebase or config.
| Name | Required | Description | Default |
|---|---|---|---|
| models | Yes | Up to 100 identifiers |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses the key behavior (reporting retired or scheduled status) but does not mention whether the operation is read-only, error handling for invalid IDs, or output format. It adds some context beyond the name but lacks edge-case disclosures.
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, no filler. The first sentence combines action and result; the second gives usage 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?
For a simple batch-check tool with one parameter and no output schema, the description is adequately complete. It states the purpose, scope, and typical use case. It lacks details on return format, but that may be clear from the tool's nature.
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 schema already documents the single parameter with 100% coverage (up to 100 identifiers). The description merely restates 'many model identifiers,' which adds no new meaning beyond the schema.
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's function: checking many model identifiers at once and reporting which are retired or scheduled for retirement. The phrase 'many model identifiers' distinguishes it from the sibling check_model, and the specific outcome (retired or scheduled) clarifies its purpose.
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 provides explicit usage context: 'Use when auditing a codebase or config.' While it doesn't name alternative tools, the context implies a batch check scenario versus a single check_model, offering clear when-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recent_changesBInspect
Recent breaking changes across AI model APIs: price moves, context-window cuts, removed capabilities, removals. One entry per real upstream change.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| min_severity | No | medium |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden. It adds useful context by specifying the kind of changes included and the 'one entry per real upstream change' deduplication behavior, but it does not mention whether the operation is read-only, authentication requirements, or potential rate limits.
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, front-loaded sentence that conveys the essential scope quickly. There is slight redundancy ('removals' and 'removed capabilities' overlap), but overall the structure is concise and no words are wasted.
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?
The tool has no output schema and no annotations, but it is a simple list operation with two optional parameters. The description explains the content and deduplication behavior, but it lacks details about the time window covered, return format, and pagination/limit behavior, making it adequate rather than fully complete.
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 0%, so the description must compensate by explaining parameters, but it does not mention limit or min_severity. The parameter names and the enum for min_severity are partially self-explanatory, but no additional meaning is added beyond the schema.
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 returns recent breaking changes across AI model APIs and enumerates specific categories (price moves, context-window cuts, removed capabilities). This is a specific verb+resource combination that distinguishes it from siblings like check_model and upcoming_retirements, which concern current state and future changes 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?
No explicit guidance on when to use this tool versus its alternatives. The sibling tool names imply complementary use cases, but the description does not state when to prefer recent_changes over check_model or upcoming_retirements, nor any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upcoming_retirementsAInspect
List models with an announced retirement date inside a horizon, soonest first.
| Name | Required | Description | Default |
|---|---|---|---|
| within_days | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It does convey that the tool filters by announced retirement date and sorts results, but it does not explain how the 'horizon' is determined or whether the output includes any additional fields or pagination. For a read-only listing tool, this is moderately transparent but not rich.
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, front-loaded sentence that conveys the core action, subject, and sorting order without wasted words. It is appropriately sized for the tool's simplicity.
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 (one optional parameter, no output schema), the description is mostly complete but has a key gap: it fails to explain that the horizon is the within_days parameter. Without this connection, an agent might not know how to control the horizon. The description also assumes familiarity with 'models' in the domain context.
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 schema has one parameter, within_days, with 0% description coverage. The description mentions 'inside a horizon' but never explicitly connects this to the within_days parameter, leaving the agent to infer that the horizon is the parameter's value. It does not specify that within_days is measured in days or that it defaults to 90, so the parameter's meaning is under-explained.
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's function: listing models with an announced retirement date within a specified horizon, sorted by soonest date first. The verb 'List' identifies it as a read-only retrieval operation, and the resource ('models with an announced retirement date') and ordering ('soonest first') distinguish it from siblings like 'recent_changes'.
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 the context of use: to find models retiring within a time horizon. It does not explicitly mention alternatives or exclusions, but the 'soonest first' ordering and 'inside a horizon' phrasing suggest this is for planning ahead. The sibling names (check_model, check_models, recent_changes) imply different purposes, so the description gives enough context without explicitly naming alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
check_model - First observed
check_models - First observed
recent_changes - First observed
upcoming_retirements
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, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Check whether an LLM model id is deprecated, retiring, or retired, and what to migrate to.
The changelog of record for the AI stack: sunset checks, deprecations, pricing, and model events.
Source-backed AI model pricing, rankings, history, and benchmark data.
New LLM releases daily: which models became deployable, context window, pricing.
161
Related MCP Servers
- AlicenseAqualityCmaintenanceCheck whether an LLM model id is deprecated, retiring, or retired, and what to migrate to. Covers OpenAI, Anthropic, Azure, Bedrock, Google, and Cohere from each provider's own deprecation pages.51141MIT

Modelmeterofficial
AlicenseNot gradedqualityCmaintenanceEnables AI agents to query model pricing, deprecations, and cost estimates via a machine-readable changelog of the AI stack.1MIT- FlicenseAqualityDmaintenanceProvides up-to-date AI model names and pricing from models.dev, solving model hallucination by fetching recently released models.1-
- FlicenseNot gradedqualityDmaintenanceProvides verified, up-to-date model IDs, pricing, and specs for over 100 models across 19 providers, preventing AI agents from using outdated or hallucinated model names.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clear, distinct purpose: check_model for a single identifier, check_models for batch auditing, recent_changes for historical breaking changes, and upcoming_retirements for future scheduled retirements. The descriptions reinforce the boundary between singular/plural and past/future, leaving no ambiguity.
Tool names are all snake_case and readable, but the pattern is mixed: 'check_model' and 'check_models' follow a verb_noun imperative style, while 'recent_changes' and 'upcoming_retirements' are descriptive noun phrases with no verb. The inconsistency in grammatical form prevents a higher score.
Four tools is a well-scoped size for a deprecation-checking server. Each tool covers a distinct need (single lookup, batch lookup, recent activity, future events) without unnecessary redundancy or missing core functionality.
The tool surface covers the full lifecycle of deprecation awareness: checking individual models, auditing multiple at once, seeing what has already changed, and planning for upcoming retirements. There are no obvious dead ends or missing operations for the stated purpose.