Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation4/5

    The two estimation tools (estimate_from_usage and estimate_water) target different input types (real API usage vs. raw tokens/prompt) and the descriptions clearly label the accurate vs. approximate paths. Similarly, compare_models returns a ranked list while pick_low_water_model returns a single best, so they are distinguishable despite some conceptual overlap. Only minor ambiguity exists for users unsure whether to use compare_models or pick_low_water_model for quick decisions.

    Naming Consistency4/5

    All tool names use lowercase snake_case and follow a verb_noun pattern (estimate_water, compare_models, list_known_models, pick_low_water_model). The only deviation is 'estimate_from_usage' which adds a preposition and breaks the simple verb_noun structure, though it remains readable and predictable. Overall, the naming is consistent with only a small inconsistency in preposition inclusion.

    Tool Count5/5

    The server has exactly 5 tools, which is within the ideal 3–15 range for a focused utility. Each tool serves a distinct purpose: estimation, comparison, selection, and cataloging. The scope is tight and nothing feels extraneous or missing.

    Completeness4/5

    The toolset covers the full lifecycle of water estimation: estimating from usage objects, estimating from raw inputs, comparing models, picking the best model, and listing known models. A minor gap is the lack of a batch estimation tool for processing multiple calls at once, but for the core domain this is a complete and usable surface. The presence of fallback behavior for unknown models also prevents dead ends.

  • Average 3.9/5 across 4 of 5 tools scored. Lowest: 3.2/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 2 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Since no annotations are provided, the description carries the burden of behavioral disclosure. It explains the return format (sorted list with tier and water range) and the filtering behavior of min_tier. It doesn't mention side effects or permissions, but for a ranking tool, this is reasonably transparent.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is concise, with two short paragraphs. The first sentence immediately states the primary purpose, and the rest adds essential detail about output and filtering. No unnecessary fluff or redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool has an output schema (though not shown) and a moderately complex set of parameters. The description explains ranking and filtering but omits the role of input_token and output_tokens parameters. It also doesn't clarify what 'models' refers to (e.g., model IDs or names). Given the low parameter coverage and lack of usage guidance, the description is not fully complete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description must explain parameters. It only clarifies min_tier (with allowed values and meaning) but says nothing about models, input_tokens, or output_tokens. Given that input_tokens and output_tokens have defaults and are likely used in the evaluation, leaving them unexplained is a significant gap.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool ranks candidate models by mid-scenario water use for a workload. It specifies the output (sorted least- to most-thirsty, with tier and water range in mL). It doesn't explicitly differentiate from sibling tools like pick_low_water_model, but the verb 'rank' and resource 'models' are specific enough.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description does not provide any guidance on when to use this tool versus alternatives. It states what it does but not when to prefer it over sibling tools. For instance, pick_low_water_model might be for selecting a single model, while this ranks all, but no comparison or exclusion is given.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden. It discloses that this is a read-only operation (listing), that it only includes known models, and importantly explains that unknown models fall back to a default tier with an assumption. This is meaningful behavioral context that helps the agent understand the tool's scope and limitations.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is concise and front-loaded: the first sentence states the core function, the second adds essential context about fallback behavior. Every sentence earns its place, with no wasted words or redundant details.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool has no parameters and an output schema exists (which presumably lists the models), the description is complete in explaining what the tool does and the key context about unknown models. It could potentially mention that the output includes the default hosting or that it's a read-only call, but these are minor gaps; the output schema likely covers return details.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has 0 parameters, and the schema coverage is 100% (there are no properties), so the description does not need to explain parameters. The baseline for 0 params is 4, and the description adds no param info, which is appropriate since there's nothing to explain.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool lists models with size tier and default hosting, which is a specific verb and resource. It does not explicitly distinguish from siblings like compare_models or pick_low_water_model, but the purpose is clear enough that an agent would understand it's a listing operation, not a comparison or selection.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    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 you need the list of known models with their defaults) but does not provide explicit when-not or alternative suggestions. It does add context that unknown models work everywhere, which helps an agent decide if listing known models is necessary, but it doesn't reference sibling tools for different needs.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations provided, so the description carries the burden. It states the tool returns the lowest-water model meeting min_tier and the savings vs. the thirstiest candidate Pdf. It does not disclose behavior when no candidate meets min_tier, nor the meaning of null min_tier. It doesn't mention any side effects (likely none), but could be more explicit about input/output token parameters' role in water estimation. The description is reasonably transparent but has gaps.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is two sentences, front-loaded with the core purpose, then usage guidance. Every sentence adds value with no redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With an output schema present, the description need not explain return values, but it does mention what it returns. It covers purpose, usage context, and key parameter guidance. It lacks edge-case behavior (e.g., no candidate meets the floor) but overall is fairly complete for a selection tool with a simple contract.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is 0%, so the description must explain parameters. It explains min_tier (capability floor) and implies candidates. It does not explain input_tokens or output_tokens, which are likely important for water estimation. Partial compensation for two of four parameters, so a 3 is appropriate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description opens with a clear, specific statement: 'Pick the least-thirsty candidate model that meets a capability floor.' This precisely identifies the action (pick), the resource (candidate models), and the qualifying condition (capability floor). It effectively distinguishes the tool from siblings like compare_models or estimate_water, which focus on estimation or comparison rather than selection.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description explicitly says 'Use in agent graphs to route each step' and explains how to set min_tier, giving clear context for when to use it. It doesn't explicitly exclude alternatives or mention when not to use it, but the purpose is clear and aligns with its siblings. A small gap: it doesn't explicitly name sibling tools as alternatives, but the context implies it.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the burden and adds meaningful behavior: it enumerates supported OpenAI/Anthropic usage shapes and explicitly states that reasoning and cached tokens are handled without double counting. It does not discuss failure modes, but the pure estimation nature and output schema reduce that need.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two front-loaded sentences: the first states the purpose and positioning, the second enumerates the supported usage shapes. Every sentence earns its place, and the density is acceptable given the complex accepted formats.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The output schema covers return values, and the usage-shape details are strong. However, the description leaves `model`, `region`, and `include_embodied` to their bare schema titles, and given the sibling list_known_models, model semantics are relevant context that is missing.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, and the description richly documents the nested `usage` shape including prompt_tokens, completion_tokens, and cache fields. However, it adds nothing about the required `model` parameter or optional `region` and `include_embodied`, so parameter semantics are only partially compensated.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a specific verb and resource: 'Estimate water (mL) from a real API usage object', and 'the accurate path' distinguishes it from the sibling estimate_water tool. It is not a tautology and clearly identifies the tool's domain.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives clear context: use this tool when you have a real API usage object and want the accurate estimate. It does not explicitly name alternatives or state when-not-to-use, so it stops short of full exclusion guidance.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the behavioral transparency burden. It meaningfully discloses defaults (500 output tokens), the role of reasoning_effort when usage is unknown, provider/region overrides, and the return shape (ranges, summary, assumptions). This goes well beyond the schema, though it does not mention failure modes or how unknown models are handled.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is front-loaded with a clear purpose sentence and then uses compact, information-dense sentences for parameter usage and return values. No sentence is wasted; every clause contributes to correct invocation or interpretation.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a 10-parameter tool with no annotations and no schema descriptions, the description is quite complete: it covers the main estimation path, key overrides, defaults, and output expectations. The main gap is that the required model parameter is not elaborated, and there is no pointer to sibling list_known_models for discovering valid model identifiers.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, and the description compensates by explaining prompt, reasoning_effort, provider, region, include_embodied, and token-count behavior. However, it refers to token counts collectively rather than explicitly mapping input_tokens, cached_tokens, output_tokens, and reasoning_tokens, leaving a small but meaningful gap.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    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: 'Estimate the freshwater consumed (mL) by one LLM call.' It clearly states the tool's scope and the main input choices (token counts vs. prompt). This differentiates it from siblings like compare_models and pick_low_water_model, which focus on comparison/recommendation rather than single-call estimation.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives clear context on when to provide token counts versus prompt text, how reasoning_effort models thinking tokens, how provider/region override the default profile, and when to set include_embodied=false. It does not explicitly name sibling alternatives or exclusion criteria, so it stops short of a 5.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

soif-mcp MCP server

Copy to your README.md:

Score Badge

soif-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Unchained-Labs/soif-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server