trackmcp
Back to directory
J1034567

washlib-mcp

View on GitHub

MCP server for Washlib — car-wash discovery and availability for AI agents (remote Streamable HTTP, no API key)

0 starsOthers Updated Sep 1, 2026

Documentation

Washlib MCP Server

Official Model Context Protocol server for Washlib — a car-wash booking marketplace in France. It gives AI agents read-only access to the live catalog: wash centers, services and starting prices, real-time availability, and (with phone verification) the caller's own booking.

Remote endpoint (Streamable HTTP, no API key):

code
https://www.washlib.com/api/mcp

Quick start

Claude Code

bash
claude mcp add --transport http washlib https://www.washlib.com/api/mcp

Cursor / VS Code / any MCP client (JSON config)

json
{
  "mcpServers": {
    "washlib": {
      "url": "https://www.washlib.com/api/mcp"
    }
  }
}

No account, token, or configuration is required for the catalog and availability tools.

Tools

ToolDescriptionAuth
`find_centers`List active car-wash centers within `radiusKm` of a latitude/longitude, nearest first.none
`get_services`List the services a center offers with a starting price each.none
`search_available_slots`Find open time slots near a location on a given day, with busyness levels.none
`recommend_wash`Recommend a wash formula for a vehicle given dirt level and season (pure guidance, no booking).none
`get_booking`Retrieve a booking the caller owns.Firebase phone-OTP token (`Authorization: Bearer `); the booking is only returned when its phone number matches the verified caller.

Resources

URIContent
`washlib://centers`All active wash centers (public catalog)
`washlib://services`Service catalog (without prices)
`washlib://pricing`Price ranges per service type across the network
`washlib://faq`Frequently asked questions (French)

Design notes

  • Read-only by design. There are deliberately no booking-mutation tools; booking happens on washlib.com. The server is safe to expose to any agent.
  • Privacy. The only PII-touching tool (`get_booking`) requires a verified phone identity and returns only the caller's own booking.
  • Locale. Washlib serves the French market: tool titles and FAQ content are in French, tool descriptions and parameters are in English, dates use the `Europe/Paris` timezone.
  • Public REST API: `https://www.washlib.com/api/public/` — OpenAPI spec at `/api/openapi.json`
  • `/llms.txt` — canonical entry point for LLMs and agents

Listings

About

This repository documents the hosted server; the implementation lives inside the Washlib application and is not open source. Questions or issues: open an issue here or see washlib.com/contact.

Frequently asked questions

What is washlib-mcp?

washlib-mcp is MCP server for Washlib — car-wash discovery and availability for AI agents (remote Streamable HTTP, no API key)

How do I install washlib-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is washlib-mcp open source?

Yes — it is hosted on GitHub at https://github.com/J1034567/washlib-mcp.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP