Washlib
Server Details
Find car wash centers in France, compare prices, check live availability, and look up a booking.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.7/5 across 5 of 5 tools scored.
Each tool has a clear, distinct purpose: listing centers, retrieving booking, listing services, recommending wash, and searching slots. No overlap in functionality.
All tool names follow a consistent verb_noun snake_case pattern (e.g., find_centers, get_booking, search_available_slots). No deviations.
5 tools is reasonable for a focused car-wash booking domain, though the set is slightly underpopulated for a full CRUD workflow.
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.
Available Tools
5 toolsfind_centersTrouver des centresAInspect
List active car-wash centers within radiusKm of a latitude/longitude, nearest first.
| Name | Required | Description | Default |
|---|---|---|---|
| latitude | Yes | ||
| radiusKm | Yes | Search radius in kilometres (max 50) | |
| longitude | Yes | ||
| serviceType | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It mentions centers are 'active' and results are sorted 'nearest first', but lacks details on pagination, maximum results, or return format. The disclosure is adequate but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence of 15 words, front-loading the key action and constraints. Every word is necessary; no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema and low parameter coverage, the description is incomplete. It doesn't specify what fields are returned, result limits, or error conditions, leaving users underinformed about the tool's full behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 25% (radiusKm documented). The description does not explain the purpose of latitude/longitude or the optional serviceType parameter, nor does it add semantic value beyond the schema. The description repeats basic parameter use without enriching meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to list active car-wash centers based on location with radius and nearest-first ordering. It uses a specific verb ('List') and resource ('active car-wash centers'), and the context distinguishes it from sibling tools like get_booking or recommend_wash.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool (finding nearby centers), but provides no explicit exclusions or alternatives. It doesn't mention when not to use it, nor references to sibling tools like search_available_slots for different use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_bookingConsulter une réservationAInspect
Retrieve a booking the caller owns. Requires a Firebase phone-OTP token (Authorization: Bearer ); the booking is only returned when its phone number matches the verified caller.
| Name | Required | Description | Default |
|---|---|---|---|
| No | |||
| bookingId | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description discloses key behaviors: requires a token and only returns if phone number matches the caller. It does not elaborate on error cases or return format, but the core safety and access control are addressed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loading the main purpose and then providing the auth requirement. It is efficient with no superfluous text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 2 parameters with 0% schema coverage, no output schema, and no annotations, the description should be more comprehensive. It omits parameter usage, return value, and error handling, leaving significant gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the tool has 2 parameters (email, bookingId). The description does not mention these parameters at all, leaving the agent without guidance on how to identify the booking or which parameter to use.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves a booking the caller owns, with a specific verb 'Retrieve' and resource 'booking'. It distinguishes itself from siblings like 'find_centers' and 'get_services', which are unrelated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool (to retrieve an owned booking) and the prerequisite (Firebase token with phone verification). However, it does not explicitly state when not to use it or mention alternatives, though siblings are sufficiently distinct.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_servicesLister les prestations d’un centreAInspect
List the services a center offers with a starting price each. centerId is the numeric id from find_centers.
| Name | Required | Description | Default |
|---|---|---|---|
| centerId | Yes | Numeric center id as returned by find_centers |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It implies a read operation but does not explicitly state safety aspects like read-only or idempotency. Acceptable for a simple list tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, each essential. The first states purpose and output, the second clarifies the parameter. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with one parameter and no output schema, the description covers purpose, output content, and parameter origin. It is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the description adds value by clarifying that centerId comes from find_centers, providing source context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists services a center offers with a starting price, using a specific verb and resource. It distinguishes from sibling tools like find_centers and get_booking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the user to get centerId from find_centers, providing clear usage context. No exclusion criteria are given, but the guidance is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_washRecommander une formuleAInspect
Recommend a wash formula for a vehicle given how dirty it is and the season. Pure guidance, no booking.
| Name | Required | Description | Default |
|---|---|---|---|
| season | No | ||
| dirtLevel | Yes | ||
| vehicleType | Yes | e.g. citadine, berline, SUV, utilitaire |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states 'pure guidance, no booking,' indicating non-destructive behavior, but lacks details about side effects, authorization needs, or output format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no filler. The purpose is front-loaded, making it efficient for an agent to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 3 parameters, no output schema, and no annotations, the description is functional but does not explain what a 'wash formula' entails or what the agent will receive as output. More context on the output or recommendation logic would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 33%, and the tool description only restates 'how dirty it is and the season' without adding meaning to the dirtLevel or season enum values. The description fails to compensate for the schema's lack of parameter explanations.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (recommend), the resource (wash formula), and the context (dirt level and season). It also distinguishes from siblings by emphasizing 'pure guidance, no booking.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (for guidance, not booking) but does not explicitly provide when-not-to-use or compare with alternatives like find_centers or get_services.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_available_slotsRechercher des créneaux disponiblesBInspect
Find open car-wash time slots near a location on a given day. Returns centers with their available slots and busyness level.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Target day in YYYY-MM-DD (Europe/Paris) | |
| location | Yes | City, postal code, center name or slug, e.g. "Paris" or "75017" | |
| serviceType | No | Filter: fixed (on-site), mobile, or home service |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Mentions return of centers with slots and busyness level, but lacks details on edge cases (e.g., empty results, error handling, required permissions, rate limits). Minimal transparency beyond basic function.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no filler. First sentence front-loads the purpose, second adds return details. Every word contributes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description sufficiently describes return format (centers with slots and busyness level). For a low-complexity search tool, it covers the main aspects. Minor gaps: no mention of pagination or sorting.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with clear parameter descriptions. The tool description adds no extra semantic value beyond what the schema already provides. Baseline 3 is appropriate as schema covers the parameters adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'find' and resource 'car-wash time slots' with specific context 'near a location on a given day'. Differentiates from siblings like find_centers (which likely finds centers without slots) and get_services (lists services).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like find_centers or recommend_wash. Does not specify prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!