Modelmeter
Server Details
The changelog of record for the AI stack: sunset checks, deprecations, pricing, and model events.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- modelmeters/modelmeter
- GitHub Stars
- 1
- Server Listing
- Modelmeter
Available Tools
7 toolscheck_model_dependenciesAInspect
Is my stack okay? Check a list of model ids against the record: scheduled retirements with days-remaining countdowns and migration targets, past retirements, and other breaking/action-required changes. Id matching tolerates dots vs dashes, dated snapshot suffixes, and bare or provider-prefixed forms. Call this at startup or in CI with the models you depend on.
| Name | Required | Description | Default |
|---|---|---|---|
| models | Yes | Model ids to check, e.g. ["gpt-4o", "claude-sonnet-4-6", "gemini-2.5-flash"]. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description takes full burden. It discloses tolerance for ID variations (dots vs dashes, suffixes, prefixes) and what it checks (scheduled retirements, past retirements, breaking changes). However, it does not explicitly state it is read-only or describe failure modes.
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 sentences, front-loaded with purpose, no filler. Every sentence adds value: purpose, behavior, usage. Excellent conciseness.
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 description covers purpose, matching logic, and usage. Lacks explicit output description (no output schema), but for a check tool with one array parameter, it is adequately complete for an agent to understand and invoke.
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 an example. The description adds significant semantic meaning by explaining the purpose of the parameter and the matching logic, going beyond the schema's basic type and example.
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 model IDs against retirement records, with a friendly opener 'Is my stack okay?' The verb 'Check' and resource are explicit, and it distinguishes from siblings like list_deprecations by focusing on specific models.
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 advises calling 'at startup or in CI with the models you depend on,' providing clear usage context. It does not explicitly exclude alternatives or contrast with siblings, but the guidance is strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
estimate_costAInspect
Estimate the USD cost of an LLM API call for a given model and token counts. Returns input/output/total cost, plus reseller markup vs. the upstream model when applicable.
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model id in provider/model form, e.g. anthropic/claude-opus-4-8. Use list_models to discover ids. | |
| input_tokens | Yes | Number of input (prompt) tokens. | |
| output_tokens | Yes | Number of output (completion) tokens. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that it returns a cost breakdown and markup info. However, it does not explicitly state that the operation is read-only or safe, but the name 'estimate' inherently suggests non-destructiveness.
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 with no filler. The description is front-loaded, starting with the main action and result.
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 absence of an output schema, the description adequately explains the return format. All necessary aspects (purpose, parameters, output) are covered. Sibling tools do not overlap.
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 all parameters. The description adds value by explaining the output (cost breakdown) and guiding the user to use list_models for model IDs. This exceeds the baseline of 3.
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 estimates USD cost for an LLM API call for a given model and token counts, and explicitly lists the return values (input/output/total cost, plus reseller markup). It is distinct from sibling tools like list_models or get_price_history.
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 for cost estimation but does not explicitly state when to use this tool versus alternatives, nor does it provide any exclusions or prerequisites. The siblings are different functions, but guidance on when not to use is missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_modelAInspect
Unified card for one model in a single call: normalized pricing, capabilities (context window, vision, reasoning, tags), availability, reseller markup vs. upstream, and a price-history summary (launch vs. current price, percent change, last change date, all-time low/high).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Model id in provider/model form, e.g. openai/gpt-5-5. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Clearly lists returned data: normalized pricing, capabilities, availability, reseller markup, price-history summary. Does not mention destructive behavior or auth, but implies read-only operation.
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?
Single sentence packs detailed information efficiently. Slightly long but no wasted words. Could be split for readability, but current structure is acceptable.
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?
No output schema, so description must explain return values. It comprehensively lists components: pricing, capabilities, availability, markup, price history (including launch vs current, percent change, dates, all-time high/low). Covers complexity well.
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 one parameter 'id' described as 'Model id in provider/model form'. Description adds no additional semantics beyond schema, so baseline 3.
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?
Description specifies 'Unified card for one model in a single call' with clear verb and resource, and distinguishes from sibling tools like list_models (multiple models) and get_price_history (history only).
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?
States when to use (getting comprehensive single-model data) but does not explicitly exclude cases or mention alternatives beyond implied context. Lacks explicit 'when not to use' guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_price_historyBInspect
Historical pricing time-series for a model or provider. Each point is a dated snapshot of the per-Mtok rates.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model id to fetch history for. | |
| since | No | ISO date (YYYY-MM-DD); only points on/after this date. | |
| until | No | ISO date (YYYY-MM-DD); only points on/before this date. | |
| provider | No | Provider id to fetch history for (all its models). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It mentions data is a time-series with dated snapshots per-Mtok rates but does not disclose caching, data freshness, error handling, or behavior when no data matches. Minimal behavioral insight.
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 sentences with no unnecessary words. Front-loaded with purpose, then explains data point meaning. Efficient and clear.
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?
Lacks output schema and annotations. Does not explain time granularity, page size, or how provider and model interact (mutually exclusive? required?). Agents need more detail for correct usage.
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 clear descriptions for each parameter. Tool description adds context about return format (dated snapshot) but does not enhance parameter understanding beyond schema. Baseline of 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 it provides historical pricing time-series for a model or provider, using specific verb-resource combination. It distinguishes from siblings like estimate_cost or list_models, which cover different functionalities.
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 guidance on when to use this tool versus alternatives like estimate_cost for current pricing or list_events for deprecation events. The description lacks context on prerequisites or exclusive use of parameters.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_deprecationsAInspect
Per-model retirement rows from the record: which model dies when, with runway and migration target. Default shows scheduled (upcoming) retirements sorted by shutdown date.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows. Default 100. | |
| status | No | Default scheduled. | |
| provider | No | Filter to one provider id. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description provides basic behavior - read operation returning sorted retirement rows - but does not disclose rate limits, whether it's read-only, or pagination details. The description is adequate but lacks enrichment beyond the obvious.
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 sentences, clear and front-loaded with key information. The first sentence is slightly jargon-heavy but still effective. No wasted words.
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 no output schema, the description gives a good overview of what rows contain (model, date, runway, migration target). It could list exact fields or mention pagination, but it's sufficient for an AI agent to understand the tool's 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 descriptions cover all parameters. The description adds no extra semantic value for parameters beyond noting the default scheduled status, which is already in 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 it lists per-model retirement rows with shutdown date, runway, and migration target. It distinguishes from siblings like list_models (general model listing) and get_model (single model detail) by focusing on deprecation information.
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 for viewing retirement schedules (default scheduled) and filtering by status or provider, but does not explicitly contrast with sibling tools or provide when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_eventsAInspect
The changelog of record for the model layer: deprecations, price changes, launches, and the market events around them. Filter by severity to find what demands action: 'breaking' (model going away, ID changing), 'action_required' (price/rate-limit/context changes), 'informational' (releases, funding).
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Event type, e.g. model_deprecation, pricing_change, model_launch. | |
| limit | No | Max events. Default 50. | |
| since | No | ISO date (YYYY-MM-DD); events announced on/after. | |
| until | No | ISO date (YYYY-MM-DD); events announced on/before. | |
| status | No | Verification status. Default 'verified' (human-confirmed). 'all' = verified + unverified. | |
| provider | No | Filter to events touching this provider. | |
| severity | No | Filter by what the event demands of consumers of the affected models. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It explains what events are covered and severity filtering, but lacks details on pagination, ordering, or response structure. The behavior is adequately described for a list tool but not comprehensive.
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 each sentence adds essential information. No extraneous words; the severity explanation is concise yet clear.
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?
While the description covers the main purpose and key filters, it lacks details on return format, pagination behavior, or default ordering. Given no output schema and 7 parameters, additional context about result structure would improve completeness.
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 severity levels and giving examples of event types, which goes beyond the schema. It provides context that helps select appropriate filters.
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 a changelog of events (deprecations, price changes, launches) and distinguishes it from sibling tools like list_deprecations by covering broader event types. The verb 'list' and resource 'events' are explicit.
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 hints at when to use it ('filter by severity to find what demands action') but does not explicitly state when not to use it or compare with alternatives. More direct guidance on selecting this tool over siblings like get_price_history would improve the score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_modelsAInspect
List available models with their current pricing. Optionally filter by provider.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return. Default 200. | |
| provider | No | Provider id, e.g. anthropic, openai, google, venice, openrouter. | |
| include_unavailable | No | Include deprecated/restricted/unavailable models. Default false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It does not disclose that this is a read-only operation, auth requirements, rate limits, or pagination behavior. Only the limit parameter hints at pagination, but the description is silent.
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 with no wasted words. It is front-loaded with the core 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?
Despite having 3 parameters and no output schema, the description is only one sentence. It does not explain return format, pagination details, or what 'available' means. More context is needed.
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 noting optional filtering by provider, but does not expand on limit or include_unavailable beyond 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 specific verb+resource: 'List available models with their current pricing.' This distinguishes from sibling tools like get_model (single model) or estimate_cost (cost estimation).
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 explicitly mentions optional filtering by provider, giving clear context. However, it does not explicitly state when not to use or point to alternatives like get_model for single model queries.
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
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 if an AI model is deprecated, retiring, or silently changed price or context window.
npm & PyPI freshness for AI agents: latest version, deprecations, dated breaking-change diffs.
A live, curated feed of new AI agent capabilities across MCP, SDKs, models, and APIs.
Latest versions, LTS windows, and EOL dates for 300+ products. Fresh ground truth for stale models.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceBlocker-aware decision layer for AI coding agents. Adds source-linked, time-sensitive blockers to AI technical choices — breaking changes, EOLs, lock-in, pricing shifts, and migration risk.4MIT
- 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
- AlicenseAqualityDmaintenanceTracks latest versions and breaking changes for popular SDKs, enabling agents to check version updates and potential breaking changes efficiently.458Apache 2.0

endoflife-mcpofficial
AlicenseAqualityAmaintenanceSoftware end-of-life intelligence for AI agents: EOL dates, support timelines and 0-100 upgrade risk scores for 480+ products. Check whether a version is still supported, score its risk, or audit an entire stack.5MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Tools are mostly distinct, but list_deprecations and list_events overlap in covering deprecations. Descriptions clarify that list_deprecations is specific to retirement schedules with runways, while list_events is a broader changelog filterable by severity, so an agent could still choose correctly.
All tool names follow a consistent verb_noun pattern using snake_case (e.g., list_models, get_model, estimate_cost). The length variation is minor and does not break the pattern.
Seven tools is an ideal size for this domain—enough to cover key operations (listing, getting details, checking dependencies, estimating costs, viewing history) without overwhelming the agent. Each tool has a clear role.
The tool set covers the main use cases for model information and monitoring. A minor gap is the lack of a dedicated tool to list providers, though list_models can filter by provider name. Overall, CRUD-like coverage is good for a read-heavy informational server.