Skip to main content
Glama

List Valet Services

valet_list_services
Read-onlyIdempotent

List the 9 canonical valet service slugs with display name and category. Use this when an agent needs to validate or discover the supported service taxonomy before composing a follow-up search (e.g. valet_search_by_service_and_city). Returns the in-bundle catalog; no upstream call; no isError path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
_metaYesTOOL-11 ToS and attribution block
servicesYesThe 9 canonical valet service types, in catalog order
data_freshnessYesTOOL-10 freshness stamp

TDQS

A4.7/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, covering safety. The description adds valuable context beyond annotations: 'Returns the in-bundle catalog; no upstream call; no isError path.' This informs the agent about the tool's execution model and error behavior, although it isn't a full behavioral contract.

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 sentences, front-loaded with the core purpose, followed by usage guidance and behavioral notes. Every sentence earns its place; no fluff or repetition. The structure is ideal for quick comprehension.

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 list tool with an output schema, the description fully covers purpose, use case, and execution traits. The presence of an output schema eliminates the need to describe return fields, and the description confirms the tool is safe and self-contained. It is complete for the tool's simplicity.

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 parameters, so the description cannot add parameter-level meaning. Per guidelines, a no-parameter tool receives a baseline of 4. The description's mention of '9 canonical service slugs' is an output detail rather than a parameter semantic, but it gives a sense of the result size.

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 a specific verb and resource: 'List the 9 canonical valet service slugs with display name and category.' It distinguishes itself from sibling tools by focusing on the service taxonomy, while siblings handle operators and cities. The 9-slug detail is concrete and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use: 'Use this when an agent needs to validate or discover the supported service taxonomy before composing a follow-up search.' It even names a sibling tool as a companion, showing awareness of alternatives. Clarifies that no upstream call occurs, which sets expectations for reliability and speed.

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.1/5.0
Disambiguation3/5

Some tools overlap in purpose: valet_find_nearest_operators and valet_find_operators_near both use coordinates and return nearby operators, while valet_find_operators_in_city and valet_search_by_service_and_city have similar city+service semantics. The descriptions help distinguish them, but an agent must read carefully to pick the right one.

Naming Consistency4/5

All tools use the valet_ prefix and snake_case, so the naming family is recognizable and mostly verb-led. Minor deviations like valet_find_operators_near versus valet_find_nearest_operators and the longer valet_search_by_service_and_city make it slightly less predictable.

Tool Count5/5

8 tools is well-scoped for a valet directory server: city lookup, service lookup, operator searches, profile retrieval, and quote submission. Each tool earns a distinct place in the workflow without bloat or dead weight.

Completeness4/5

The toolkit covers the core workflow end-to-end: resolve cities, search operators by city/coordinate/service, get full profiles, validate service slugs, and request a quote. Obvious minor gaps are operator name search and any quote management/update operation, but the primary directory flow is complete.