Skip to main content
Glama

Check TTS Service

check_tts_service
Read-onlyIdempotent

Check health status of the TTS API service.

Returns: dict with keys: - status (str): 'healthy' or error state

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already provide readOnlyHint, idempotentHint, and destructiveHint=false. The description adds disclosure of the return format (dict with status key), which is beyond annotations. No contradictions.

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 lines for the return description, no extraneous text. Every sentence is meaningful and focused.

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 no input schema and no output schema, but rich annotations, the description adequately describes the return format. However, it lacks detail on potential error states or interpretation beyond 'healthy' or error.

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?

Zero parameters, so the input schema covers everything. The description adds no extra parameter info, but none is needed. Baseline 4 for no-parameter tools.

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 clearly states 'Check health status of the TTS API service', with specific verb ('check') and resource ('health status of TTS API service'). It distinguishes from sibling tools (list_voices, synthesize_speech) which do different tasks.

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?

No explicit guidance on when or when not to use this tool versus alternatives. Usage is implied for health checking, but no exclusions or alternative recommendations are provided.

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.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: health check, listing available voices, and converting text to speech. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (check_tts_service, list_voices, synthesize_speech).

Tool Count4/5

3 tools is minimal but appropriate for a TTS service, covering health monitoring, voice discovery, and speech synthesis. A slight expansion could include voice details, but current set is reasonable.

Completeness4/5

The tool surface covers the core operations: check service health, list voices, and synthesize speech. Minor gaps, such as the inability to retrieve a single voice's details without listing all, but overall adequate for the stated purpose.