inferenceindexer-mcp
Server Details
AI inference pricing for agents: live and historical model prices, provider comparison.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- DesMartin01/inferenceindexer-mcp
- GitHub Stars
- 0
- Server Listing
- InferenceIndexer MCP Server
Tool Definition Quality
Average 4.4/5 across 8 of 8 tools scored.
Each tool targets a distinct resource/action, but get_model and compare_providers both surface pricing for a single model, and search_models could overlap with get_model for direct lookups. The descriptions are clear enough to resolve the ambiguity in practice.
All tools follow a consistent verb_noun snake_case pattern: get_* for details and history, list_* for enumeration, search_* for filtering, and compare_* for cross-provider comparison. No mixed naming conventions or vague verbs.
8 tools is well-scoped for an inference pricing/index analytics server: model detail, model history, provider listing, provider detail, cross-provider comparison, and composite index current/history. Each tool has a clear role and none feel redundant.
The read-oriented domain is well covered: models have search/detail/history, providers have list/detail/comparison, and the composite index has current and historical views. Minor gaps such as provider-level price history or direct multi-model side-by-side comparison are not essential and can be worked around with existing tools.
Available Tools
8 toolscompare_providersAInspect
Compare the price of one model across the providers that host it.
Args:
model_id: Canonical model id, e.g. 'meta/muse-spark-1.1'.
Returns: per-provider endpoints with pricing, showing where direct
provider prices diverge (e.g. from OpenRouter's negotiated rate).
| Name | Required | Description | Default |
|---|---|---|---|
| model_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. It adds useful context: the return contains per-provider endpoints with pricing and highlights divergence from OpenRouter's negotiated rate. It could mention error cases or authorization needs, but for a read-only comparison tool the disclosed behavior is sufficient.
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 compact and well-structured with a one-sentence purpose followed by an Args/Returns breakdown. Every sentence adds value, and the format is easy to parse.
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 is simple: one parameter, an output schema exists, and the description covers the core behavior and return semantics. Nothing essential for calling the tool correctly is missing, given the single required parameter and available output schema.
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. It explains that model_id is a canonical model id and provides a concrete example ('meta/muse-spark-1.1'), giving the agent the format and a template for valid values. This is exactly what is needed beyond the schema's bare title.
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 states a specific verb ('Compare') and resource ('price of one model across the providers that host it'). This clearly distinguishes it from siblings like get_model, get_provider, and list_providers, which focus on individual models or providers rather than cross-provider comparison.
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 when to use this tool: when needing per-provider price comparison for a specific model. However, it does not explicitly list alternatives or exclusions, leaving the agent to infer the boundary with related tools like get_model or get_provider.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_composite_historyAInspect
Get SIT-Composite index history / trend over time.
Args:
days: History window in days (1-90, default 30).
Returns: historical composite index values.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It does disclose the days window range (1-90) and default, and implies a read-only operation via 'Get' and 'Returns', but it omits details like data granularity, timezone handling, or any rate limits. Minimal but acceptable for a simple read tool.
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 short, front-loaded with the core purpose, and structured into clear Args and Returns sections. Every sentence adds useful information and none is 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?
Given the tool has only one parameter, an output schema, and a straightforward read-only purpose, the description is largely complete. It could be slightly richer by explaining the returned data's granularity or directing users to get_composite_latest for current values, but these are minor gaps.
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. It fully documents the sole parameter 'days' with meaning ('History window in days'), allowed range (1-90), and default (30), which goes well beyond the bare schema definition.
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 resource (SIT-Composite index history) and the action (get), and adds 'history / trend over time', which differentiates it from the sibling get_composite_latest. The verb and object are specific and 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 phrase 'history / trend over time' implies this tool should be used when historical data is needed, but it does not explicitly contrast it with get_composite_latest or any other sibling. Usage context is implied rather than explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_composite_latestAInspect
Get the current SIT-Composite index value + per-tier breakdown.
The SIT-Composite is a usage-weighted mean of the top-50 models by token volume, reflecting what developers actually pay for inference.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It makes clear that this is a read of the current value and defines the metric, but it does not address operational traits such as data freshness, update cadence, or any access caveats. The simple read nature limits the risk.
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, with the primary capability front-loaded and the metric definition in the second. No redundant wording; every sentence adds value.
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 no-parameter current-value endpoint with an output schema present, this description is complete. It explains the meaning of the index and defines the output scope (current value plus per-tier breakdown), leaving only schema details to the structured output.
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 tool has zero parameters, so there is no parameter semantics to document; this earns the baseline of 4. The description adds useful context about what the returned composite represents without needing to describe inputs.
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 opens with the imperative 'Get the current SIT-Composite index value + per-tier breakdown', specifying both the resource and the snapshot nature. The second sentence defines the composite precisely, distinguishing it conceptually from other model/provider tools.
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 word 'current' clearly signals this is the snapshot endpoint, contrasting implicitly with get_composite_history. It does not explicitly name alternatives or exclusions, but the usage context is clear enough for a no-parameter tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_modelAInspect
Get full detail + current pricing for one model by its id.
Args:
model_id: Canonical model id, e.g. 'openai/gpt-5.6' or 'anthropic/claude-sonnet-5'.
Returns: pricing, tier, SIT score, quality-adjusted price (Cost/IQ).
| Name | Required | Description | Default |
|---|---|---|---|
| model_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
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 communicates that the operation is a read-only-style get for a single model and lists the returned fields, but it does not mention error behavior, data freshness, authentication needs, or rate limits. This is baseline transparency but not richer behavioral context.
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 front-loaded with a clear, one-line purpose and is followed by a compact Args/Returns breakdown. Every sentence earns its place; there is no filler, redundancy, or boilerplate.
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 single-parameter tool with an output schema present, the description covers the operation, input format, and key return values. It could add a note about using search_models when the id is unknown or what happens on an invalid id, but those are marginal given the tool's simplicity and existing output schema.
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 offers zero description for model_id, but the description's Args section fully compensates by explaining the parameter's meaning and giving concrete, canonical examples such as 'openai/gpt-5.6' and 'anthropic/claude-sonnet-5'. This completely eliminates any ambiguity about the parameter format.
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 uses a specific verb ('Get') and resource ('full detail + current pricing for one model by its id'), which clearly distinguishes it from sibling tools like search_models (search by criteria) and get_model_history (history over time). The phrase 'by its id' makes the singular, lookup nature immediately clear.
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 appropriate context: use this when you already know a canonical model_id and want detailed information plus pricing. However, it does not explicitly state when not to use it or point to alternatives such as search_models for unknown IDs, stopping at implied guidance rather than explicit routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_model_historyAInspect
Get HISTORICAL price data / trends for one model.
This is InferenceIndexer's differentiator: aggregators like OpenRouter
expose only current price; this returns the price over time (input,
output, blended $/M), enabling trend analysis.
Args:
model_id: Canonical model id, e.g. 'openai/gpt-5.6'.
days: History window in days (1-365, default 30; plan-dependent).
Returns: historical price series for the model.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | ||
| model_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explains that this tool returns time-series price data across input, output, and blended $/M, and notes that the 'days' window is plan-dependent. This goes well beyond the tool name and schema, though it could have mentioned error cases or granularity, which are not critical here.
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 concise and well-structured: a one-sentence purpose, a short differentiator, an Args list, and a Returns line. Every section earns its place, and the purpose is front-loaded. There is no redundant filler.
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 two-parameter read-only historical data tool, the description is complete: it covers model_id format, the days window constraints, the return nature, and the underlying use case. The output schema can handle the detailed return structure, so the description does not need to repeat field-level output details.
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, and it does. It defines model_id with a concrete canonical format example, and days with range (1-365), default (30), and plan-dependency. Both parameters are meaningfully explained beyond the bare schema types.
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 opens with a specific verb and resource: 'Get HISTORICAL price data / trends for one model.' It clearly distinguishes this tool from current-price lookups and composite history tools by emphasizing 'one model' and the time-series nature of the data. This makes it easy for an agent to separate it from siblings like get_model or get_composite_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 clearly signals the intended use case: when historical price trends are needed rather than the current price. It explicitly contrasts with aggregators like OpenRouter that only expose current price, helping the agent decide when to call this tool. It does not explicitly name sibling alternatives, but the context is clear enough to infer the right usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_providerAInspect
Get detail for one provider: models, tier breakdown, price range.
Args:
provider_name: Provider name, e.g. 'DeepInfra', 'Novita', 'Venice'.
Returns: provider detail with model list and pricing.
| Name | Required | Description | Default |
|---|---|---|---|
| provider_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the burden and does state the output ('Returns: provider detail with model list and pricing'), implying a read-only getter. It does not discuss not-found or error behavior, but for a simple fetch tool with an output schema 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?
Compact three-part structure: one-line purpose with contents, parameter docs, return summary. No filler, and the parameter example is efficient.
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 single-parameter getter with an output schema, this description provides enough to choose, invoke, and interpret the tool: target scope, parameter format/examples, and return contents.
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 only defines provider_name as a string with no description. The description documents the parameter in Args and gives concrete examples ('DeepInfra', 'Novita', 'Venice'), which is exactly the guidance an agent needs to fill it correctly.
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?
States a specific action ('Get detail') on a specific resource ('one provider') and enumerates the detail payload (models, tier breakdown, price range). Clear enough to distinguish from sibling list_providers or compare_providers.
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 phrase 'for one provider' sets clear selection context: an agent should call this when it needs a single provider's detail rather than a list or comparison. It does not explicitly name alternatives or say when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_providersAInspect
List all inference providers with model counts and price stats.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral disclosure burden. 'List' implies a read-only, side-effect-free operation, and the returned content is described, but there is no explicit statement of read-only behavior, pagination, sorting, or limits. For a zero-argument list operation the gap is moderate.
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 names the action, scope, and output contents without any wasted words. Every part contributes directly to understanding what the tool returns.
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 zero-parameter list operation with an output schema available, the description is sufficient. It tells the agent exactly what will be listed and what statistics are included, so nothing critical is missing for correct 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?
The tool has zero parameters, the schema is an empty object, and schema coverage is 100%. The 0-parameter baseline applies, and the description correctly avoids adding unnecessary parameter details.
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 uses a specific verb ('List'), identifies the resource ('all inference providers'), and states the included metrics ('model counts and price stats'). This clearly distinguishes it from singular get_provider and from compare_providers by scope.
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 core usage scenario is clear: list the full set of inference providers. However, it does not explicitly mention when to prefer this over get_provider or compare_providers, nor does it state any exclusions. The guidance is implied by the word 'all' and sibling names rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_modelsAInspect
Search and list AI inference models with current pricing.
Args:
query: Text search on model id/name (optional).
tier: Filter by tier: frontier | standard | budget | micro | zdr | eu (optional).
limit: Max results (1-100, default 25).
sort: Sort key, e.g. 'blended' (price), 'sit' (SIT score) (optional).
Returns: models with input/output/blended $/M pricing, provider, tier.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | ||
| tier | No | ||
| limit | No | ||
| query | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden. It discloses the return payload (models with pricing, provider, tier), the accepted tier values, limit bounds, and example sort keys. It does not cover error behavior or data freshness, but it provides solid transparency for a read-only search tool.
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 compact and well-structured: a one-sentence summary followed by an Args block and a Returns line. Every sentence conveys necessary information without redundancy or padding.
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/list tool with four optional parameters and an output schema, the description is largely complete: it documents parameter semantics, return fields, tier options, and sorting. It does not explicitly address alternatives like get_model, and omits default sort behavior, but these are minor gaps given the overall clarity.
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 are 0% covered, so the description fully compensates by explaining all four parameters: query targets model id/name, tier lists valid filter values, limit gives range and default, sort gives examples with meanings. This is exactly the semantic detail an agent needs beyond the bare 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 opens with a specific verb and resource: 'Search and list AI inference models with current pricing.' This clearly distinguishes search_models from siblings like get_model (single model lookup), list_providers, and compare_providers. The purpose is unambiguous even without a title.
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 clearly establishes that this tool is for searching/listing models by text query, tier, limit, and sort, which implicitly distinguishes it from single-model or provider-level tools. It lacks an explicit statement of when not to use it or which sibling to prefer, but the intended context is clear.
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
Live LLM API pricing: token prices, comparisons, cheapest-model lookups. No key required.
LLM and GPU rental prices: model price lookup, GPU listings, cheapest-GPU search, price history
Live LLM API price + status radar across 11 providers, with public per-model price HISTORY.
Verified cloud cost forecasting for AI agents. AWS, GCP, Azure pricing matrix.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceCompare AI inference pricing across 9 providers in real time. Routing recommendations, spend tracking, and budget alerts for AI agents.119MIT
- FlicenseAqualityNot gradedmaintenanceCompute price oracle for AI agents. Compare inference pricing across OpenAI, Anthropic, and DePIN providers like Hyperbolic. Get routing recommendations that save up to 80% on compute costs.5
- AlicenseAqualityCmaintenanceGlobal price benchmarking for AI inference across 2,600+ SKUs from 47 vendors. Query live pricing, market indexes, and model specs via 8 tools. Free tier available.8121MIT
- AlicenseAqualityAmaintenanceLive LLM API pricing: current token prices, model comparisons, cheapest-model lookups, and The LLM Price Index for 150+ models across 20+ providers, re-verified daily. No API key required.51MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.