Skip to main content
Glama

Server Details

Agent-callable car deal grading MCP server.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

B3.4/5.0

Scored across 3 tools

Disambiguation4/5

score_deal grades a full car deal from inputs, while explain_grade takes a delta_pct and explains the rubric behind the grade; health is clearly distinct. The score/explain pair borders on overlap, but the descriptions and differing inputs make the boundary reasonably clear.

Naming Consistency4/5

explain_grade and score_deal follow a consistent verb_noun snake_case pattern, while 'health' is a bare noun. This is a minor, conventional deviation rather than a real inconsistency.

Tool Count4/5

With only 3 tools the surface is somewhat thin, but each maps cleanly to a distinct API endpoint (score, explain, health) and earns its place for a single-purpose scoring service.

Completeness4/5

The domain is car-deal scoring, and the core lifecycle of scoring a deal, explaining a grade, and checking service health/coverage is covered. Minor gaps like batch scoring or history/listing exist but are not essential to the stated purpose.

Available Tools

3 tools
explain_gradeExplain GradeAInspect

Explain the score_v1 rubric grade for a delta_pct. Same as POST /api/explain.

ParametersJSON Schema
NameRequiredDescriptionDefault
delta_pctYes

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. 'Explain' implies a non-mutating read operation, and the alias to POST /api/explain adds a small amount of implementation context. However, it does not disclose return format, error behavior, or whether the operation has any side effects.

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 very concise: two short sentences, each earning its place. The core purpose is front-loaded, and the API alias sentence adds useful implementation context without redundancy.

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?

For a single-parameter explain tool, the description is minimally viable. It identifies the input and the operation, but with no output schema and no annotations, it leaves out what the explanation response looks like and what constraints apply to delta_pct.

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% and the description only names delta_pct without defining its meaning, valid range, or units. The phrase 'for a delta_pct' adds minimal context beyond the schema, and since coverage is 0%, the description should have compensated more.

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 ('Explain'), a specific resource ('the score_v1 rubric grade'), and an input ('delta_pct'). This clearly distinguishes it from its siblings: health is a health check and score_deal is about computing a score, while this tool explains an existing rubric grade.

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 intended use is implied: use this when you need an explanation of a score_v1 rubric grade for a delta_pct. However, it does not explicitly compare itself to score_deal or health, nor does it state when not to use it, so the guidance relies on inference.

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

healthHealthAInspect

Service health, coverage, cache policy, and limitations. Same as GET /api/health.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It discloses what the endpoint returns (health, coverage, cache policy, limitations) and identifies it as a GET request, which implies a read-only operation. However, it does not explicitly confirm no side effects, error behavior, or response structure.

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 short sentences with no filler. The content is front-loaded with the value proposition, and the endpoint mapping is a useful one-line addition. Every phrase earns its place.

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 zero-parameter health check, the description is largely complete without an output schema: it names the four content areas returned and gives the API endpoint. It could be slightly richer by noting whether the output is a simple status object or contains nested sections, but an agent can call it and inspect the response safely.

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 parametersched, so the schema fully describes the input surface. The description adds no parameter detail, but none is needed beyond the schema. This is the appropriate baseline for a parameterless tool.

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 exactly what the tool reports: service health, coverage, cache policy, and limitations. Mapping it to GET /api/health removes ambiguity, and the sibling tools (explain_grade, score_deal) are clearly unrelated. This is a specific, unambiguous definition.

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 call it—when service status, coverage, cache policy, or limitations are needed—but does not explicitly state use cases or exclusions. It provides no guidance on alternatives, though the sibling tools are obviously different. Usage is clear by inference, not by instruction.

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

score_dealScore DealCInspect

Grade a car deal: compare asking price to expected market value. ZIP is optional. Same inputs/outputs as POST /api/score.

ParametersJSON Schema
NameRequiredDescriptionDefault
vinNo
zipNo
makeNo
trimNo
yearNo
modelNo
mileageYes
asking_priceYes

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden but does not say what the output looks like (a letter, a numeric score, a range?), whether it is deterministic, or what errors can occur. 'Same inputs/outputs as POST /api/score' references an external REST endpoint the agent cannot inspect, which adds no usable behavioral detail.

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

Conciseness4/5

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

Three short sentences with the core purpose front-loaded and no filler prose. The final API-endpoint sentence is of questionable value to an MCP agent, but the text is otherwise tight and well-ordered.

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?

For an 8-parameter tool with no annotations, no output schema, and 0% schema coverage, the description leaves too much unsaid: the meaning of a 'grade', how the market-value comparison is expressed, and the semantics of the six undocumented inputs. It is adequate only at the highest level of the operation.

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% across 8 parameters, so the description must compensate and mostly does not: required 'mileage' is never mentioned, and vin/make/model/trim/year are left entirely undocumented. The one statement given ('ZIP is optional') merely restates that zip is absent from the required list, adding no new meaning.

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?

States a specific verb+resource ('Grade a car deal') and immediately explains the operation: 'compare asking price to expected market value.' This is far clearer than the bare name, though it never distinguishes itself from the sibling 'explain_grade', leaving the boundary between scoring and explaining implicit.

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?

There is no explicit guidance on when to call this versus 'explain_grade' or what a valid call requires. 'ZIP is optional' is the only usage-style hint, and it is a parameter note rather than a routing instruction. An agent must guess the scenario boundary between the two grade-related siblings.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool update
    • Changedscore_deal1 field changed
      • changedInput schema / required
        Previous value: -[
        -  "asking_price",
        -  "mileage",
        -  "zip"
        -]New value: +[
        +  "asking_price",
        +  "mileage"
        +]
  2. 3 tool updates
    • First observedexplain_grade
    • First observedhealth
    • First observedscore_deal

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Analyze LinkedIn & email outreach campaigns, track pipeline performance, and review lead conversations for RevOps, Sales Managers, and SDR teams.
    Apache 2.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources