Skip to main content
Glama

Solar Quote Audit — Check Before You Sign

get_scoring_methodology

Return the fixed, published scoring methodology used by the Solar Quote Audit: the four scoring dimensions, their point weights, the individual rules within each dimension, and the rating thresholds. Takes no arguments.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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 and does so well: 'Return' indicates a read-only retrieval, 'fixed, published' signals deterministic, non-changing data, and 'Takes no arguments' confirms there are no inputs required. It could have added detail about output formatting, but for a zero-argument tool the disclosed behavior is largely sufficient.

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 a single well-structured sentence that front-loads the core purpose and then details the specific information returned. Every element earns its place; there is no filler or redundancy.

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

Completeness5/5

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

For a zero-argument tool with no output schema, the description fully covers what an agent needs to know: what the tool returns, the specific components included, and that no arguments are required. The tool's simplicity means nothing important is missing.

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 zero parameters and the schema already documents this completely. The description reinforces this with 'Takes no arguments,' which is helpful and unambiguous. No additional parameter meaning is needed since there are no parameters to explain.

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 uses a specific verb 'Return' and precisely names the resource: the fixed, published scoring methodology used by the Solar Quote Audit. It enumerates the exact contents included (four scoring dimensions, point weights, individual rules, rating thresholds), making the tool's purpose unmistakable. This clearly differentiates it from siblings like analyze_solar_quote, which would analyze a quote, and get_supported_regions, which returns regional data.

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 makes clear this is the tool for retrieving the official scoring methodology, providing strong contextual guidance. It does not explicitly name alternatives or state when not to use it, but the stated scope ('fixed, published scoring methodology') makes its usage context easy to infer.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool has a clear, separate responsibility: analyzing quotes, returning the scoring methodology, and listing supported regions. There is no overlap or ambiguity in selecting among them.

Naming Consistency5/5

All tool names follow a snake_case verb_object pattern: analyze_solar_quote, get_scoring_methodology, and get_supported_regions. The verbs differ appropriately, but the naming style is consistent throughout.

Tool Count5/5

Three tools is an appropriate scope for a niche decision-support server: one core analysis action and two static reference endpoints. There is no unnecessary duplication or bloat.

Completeness5/5

The tool surface fully supports the stated purpose: analyze a quote, understand the methodology, and check region availability. There are no obvious missing operations for this read-only advisory use case.

Resources