Skip to main content
Glama
agentspan-ai

MCP Test Server

by agentspan-ai

conversion_celsius_to_fahrenheit

Converts a temperature value from Celsius to Fahrenheit. Provide the Celsius value to get the equivalent in Fahrenheit.

Instructions

Convert a temperature from Celsius to Fahrenheit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

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. For a pure arithmetic function the behavioral surface is small, but it says nothing about edge cases (very large values, precision/rounding of the returned Fahrenheit) that the agent might care about. Adequate but thin.

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?

One sentence, zero filler, and the operation and direction are front-loaded. Nothing extraneous and nothing omitted that structure could add.

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?

An output schema exists, so the return value needn't be explained, and the tool is a trivial deterministic conversion. The description is sufficient for correct invocation, losing only minor points for not noting precision or range behavior.

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% for the single parameter 'value'. The description implies the parameter is the Celsius temperature, which adds some meaning, but it does not state the accepted range, units assumption, or whether negatives/huge magnitudes are valid.

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 (convert) and resource (temperature from Celsius to Fahrenheit), so the agent knows exactly what it computes. It does not explicitly distinguish itself from the inverse sibling conversion_fahrenheit_to_celsius, though the direction is unambiguous from the name and text.

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?

Usage is implied by the operation itself — an agent needing a C-to-F conversion picks this tool. There is no explicit when-to-use/when-not guidance, but for a single-purpose unit conversion there is little alternative ambiguity beyond the inverse sibling.

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