Skip to main content
Glama
WYRE-AI

Customer Thermometer MCP Server

by WYRE-AI

customerthermometer_get_credits

Check the number of remaining Thermometer send credits on your account to know if you need to refill before sending surveys.

Instructions

Get the number of remaining Thermometer send credits on the account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. 'Get' clearly indicates a read-only operation with no side effects, and 'remaining credits' describes the account state being queried. It does not mention authentication, but for a zero-parameter read-only tool this 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.

Conciseness5/5

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

A single, direct sentence states the resource, the operation, and the account scope with no filler or repetition. Everything present earns its place.

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-parameter, read-only getter with no output schema, the description is complete: it states what action is performed and what result is returned (a count of remaining credits). 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 input schema has zero properties, so there are no parameters needing documentation. The description's mention of 'on the account' clarifies the implicit scope. This meets the baseline for a no-parameter 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 uses a specific verb ('Get') and resource ('remaining Thermometer send credits'), making the tool's function immediately clear. It also distinguishes itself from siblings that handle thermometers, recipient lists, sending, and results.

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 it — whenever an agent needs the account's remaining send credit count — but it gives no explicit context about when not to use it or which sibling might be an alternative. For such a simple read-only tool, the implied usage is acceptable but not explicit.

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