Skip to main content
Glama

Trouver des centres

find_centers

List active car-wash centers within radiusKm of a latitude/longitude, nearest first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latitudeYes
radiusKmYesSearch radius in kilometres (max 50)
longitudeYes
serviceTypeNo

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description carries full burden but only mentions 'active' and 'nearest first'. It does not disclose behavior such as rate limits, pagination, error handling, or what happens if no results. Minimal behavioral insight beyond the obvious.

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?

Single sentence, extremely concise, front-loads the key action and criteria. No wasted words, every part earns its place.

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?

Tool has 4 params, optional serviceType, and no output schema or annotations. The description lacks detail on return structure, error conditions, or behavior when serviceType is omitted. Incomplete for a contextual understanding.

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 low (25%, only radiusKm has a description). The tool description adds no parameter-level meaning beyond the schema, missing explanation of required lat/lng format, optional serviceType meaning, or how radiusKm is used.

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 the verb 'List' and the resource 'active car-wash centers', with explicit criteria (within radiusKm of lat/lng, nearest first). It effectively distinguishes from sibling tools like get_booking or get_services by specifying a geographic search.

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 usage for finding nearby car-wash centers, but does not explicitly state when to use this tool versus alternatives like recommend_wash or search_available_slots. No exclusions or context guidance is 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

A3.7/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose: listing centers, retrieving booking, listing services, recommending wash, and searching slots. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., find_centers, get_booking, search_available_slots). No deviations.

Tool Count4/5

5 tools is reasonable for a focused car-wash booking domain, though the set is slightly underpopulated for a full CRUD workflow.

Completeness2/5

Missing essential tools for creating, updating, or canceling bookings. The server allows discovering services and slots but not completing a reservation, which is a significant gap.

Resources