VeryChic Hotel Deals
Server Details
Unofficial read-only MCP server for VeryChic hotel offers
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- jordantete/verychic-mcp
- GitHub Stars
- 1
- Server Listing
- verychic-mcp
Available Tools
2 toolsverychic_offer_detailsARead-onlyIdempotentInspect
Get full details plus per-date availability and prices for one specific VeryChic offer.
When to use: after `verychic_search_offers` returned an offer you want to inspect —
pass that offer's `source` and `external_id` here. You must obtain those two
identifiers from a search result first; this tool does not search.
Behaviour: read-only and anonymous; rate-limited to about 1 request per second;
prices in EUR, text in French. Availability is looked up for roughly the next 5
months. For tour-operator packages (`source` = 'ORCHESTRA_TO') VeryChic exposes no
date-availability endpoint: `availabilities` is then empty and
`availabilities_supported` is false — meaning "not supported", NOT "sold out".
Returns an object with: `offer` (same fields as a search result, plus `offer_url`),
`advantages`, `included_added_values`, `non_included_added_values`, `gallery`
(image URLs), `availabilities` (one entry per check-in date with `date`, `price`,
`currency`, `nights`, `days`, `departure_city_code`), `availabilities_supported`
(bool), and `cheapest_price` (lowest available price, or null when none).
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | The offer's source type, copied verbatim from the `source` field of a `verychic_search_offers` result. One of 'ORCHESTRA' (a single hotel) or 'ORCHESTRA_TO' (a tour-operator package). Packages have no per-date availability. | |
| external_id | Yes | The offer's numeric `external_id`, copied from a `verychic_search_offers` result. Identifies the offer together with `source`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| offer | Yes | |
| gallery | Yes | |
| advantages | Yes | |
| availabilities | Yes | |
| cheapest_price | Yes | |
| included_added_values | Yes | |
| availabilities_supported | Yes | |
| non_included_added_values | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only and non-destructive, and description adds rate limit (1 req/s), currency (EUR), language (French), availability window (~5 months), and special behavior for tour-operator packages (availabilities empty but meaning not supported, not sold out). This adds value beyond annotations.
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?
Description is well-structured with sections: summary, when to use, behavior, returns. It is concise (about 150 words) and front-loaded with the purpose. Every sentence is informative.
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?
Despite the output schema not being shown, the description fully documents the return structure. It covers all relevant details including edge case for tour operators. The tool has only 2 simple parameters, and the description addresses all contextual needs.
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%, but description adds context: explains that source can be 'ORCHESTRA' or 'ORCHESTRA_TO' and that tour-operator packages have no per-date availability. This enriches the parameter 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 gets full details plus per-date availability for one specific VeryChic offer. It distinguishes from the sibling 'verychic_search_offers' by specifying that identifiers must come from a search result.
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?
Explicitly states when to use (after search returns an offer) and when not to (does not search). Provides clear prerequisite: must obtain source and external_id from search result first.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verychic_search_offersARead-onlyIdempotentInspect
Search and filter the current VeryChic offers by destination, country, price, discount, stars, flights, theme, or proximity — with optional sorting.
When to use: when you already know roughly what the user wants — a place, a country,
a budget, a minimum discount or star rating, flights vs hotel-only, a theme (e.g.
pool, spa, romantic, last_minute), or hotels near a point (near_lat/near_lng, with an
optional radius_km). To inspect one specific offer in depth use
`verychic_offer_details`. All filters are optional and combine with AND; call it with
no filter to browse the full current catalogue in catalogue order.
Behaviour: read-only and anonymous; rate-limited to about 1 request per second.
Filtering is done client-side over the live catalogue: `destination` is a
case-insensitive substring (matched on destination or name), `country` is an exact
case-insensitive match, `max_price`/`min_discount`/`min_stars` are numeric bounds,
`flights_included` toggles flight-bearing vs hotel-only, and `theme` matches a curated
label decoded from the catalogue's thematics tags. Use `sort_by` to order results
(`discount`, `price`, `rating`, `stars`, or `distance`). Prices are in EUR and text is
in French; there is no pagination. Returns the first `limit` matches after filtering
and sorting. "Current" means live offers at call time; the catalogue changes over time.
Returns a list of offer objects (same `source` + `external_id` pair for use with
`verychic_offer_details`). Each offer also carries `discount` (percent off, may be
null), `stars` (1-5, may be null), `price_label` (human-readable price unit, e.g.
"à partir de par pers. pour 3 nuits" vs "par chambre" — read this before comparing
prices), `price_with_flights` (EUR, null when not applicable), `flights_included`
(bool), `rating` (hotel grade, often null in the catalogue), and `themes` (curated
theme labels decoded from the catalogue's thematics tags, e.g. ["pool", "luxury"]).
An empty list means no offer matched the filters.
Proximity search: pass `near_lat` and `near_lng` (decimal degrees, together) to
compute each offer's `distance_km` from that point; add `radius_km` to keep only
offers within that distance, and/or `sort_by="distance"` for nearest-first.
`distance_km` is null when no center is given.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of matching offers to return (default 20), applied after filtering and sorting. No pagination. | |
| theme | No | Keep only offers matching this curated theme, decoded from the catalogue's thematics tags. One of: adults_only, city_break, cruise, island, last_minute, luxury, mountain, nature, pool, romantic, rooftop, spa, sun, villa. Omit to not filter by theme. | |
| country | No | Exact country name, case-insensitive, as spelled in the (French) catalogue, e.g. 'France', 'Italie', 'Grece'. Omit to not filter by country. | |
| sort_by | No | Sort the results: 'discount' (biggest discount first), 'price' (cheapest first), 'rating' (best-rated first), 'stars' (most stars first), 'distance' (nearest first, requires near_lat/near_lng). Offers missing the sort value are placed last. Omit to keep catalogue order. | |
| near_lat | No | Latitude of a search center for proximity search, in decimal degrees. Must be given together with near_lng. Omit for no geo search. | |
| near_lng | No | Longitude of a search center for proximity search, in decimal degrees. Must be given together with near_lat. Omit for no geo search. | |
| max_price | No | Inclusive upper bound on the offer price, in EUR. Offers with no price are excluded when this is set. Omit for no price cap. | |
| min_stars | No | Keep only offers with at least this hotel star rating (1-5), parsed from the offer name. Offers with no detectable rating are excluded. Omit to not filter by stars. | |
| radius_km | No | Keep only offers within this many kilometers of the near_lat/near_lng center. Requires near_lat and near_lng. Omit for no radius. | |
| destination | No | Case-insensitive substring matched against each offer's destination AND name (e.g. 'paris', 'maldives', 'crete'). Omit to not filter by destination. | |
| min_discount | No | Keep only offers whose discount percentage is at least this value (e.g. 40 for '40% off or more'). Offers with no discount are excluded. Omit for no discount filter. | |
| flights_included | No | Filter on whether flights are part of the offer: true keeps flight-bearing offers, false keeps hotel-only offers. Omit to not filter. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds substantial context: read-only and anonymous access, rate limit (~1 req/s), client-side filtering over a live catalogue, no pagination, and that the catalogue changes over time. No contradictions with annotations.
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 well-structured with clear sections (When to use, Behaviour, Proximity search). It is front-loaded with the main purpose. However, it is somewhat verbose and repeats details already present in the schema (e.g., parameter types). Minor redundancy prevents a perfect score.
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 tool has 12 optional parameters, proximity search, sorting, and an output schema exists, the description is thorough: it covers all filters, their combination (AND), return format (list with key fields), edge cases (null values, empty list), and notes like text in French. An output schema exists, so return values need not be detailed, but the description still provides useful insight.
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%, baseline 3. The description greatly enhances parameter meaning: explains case-insensitivity for destination/country, exact match for country, numeric bounds for price/discount/stars, interdependence of proximity parameters (near_lat/near_lng), and how sort_by interacts with missing values. This goes well beyond the schema descriptions.
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 searches and filters VeryChic offers by multiple criteria, and distinguishes it from the sibling tool `verychic_offer_details` which is for inspecting specific offers. The verb 'search and filter' combined with resource 'VeryChic offers' is specific and unambiguous.
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 'When to use' section explicitly advises using this tool when the user's rough intent is known (destination, budget, etc.) and directs to `verychic_offer_details` for deeper inspection of a single offer. It also notes that calling with no filters returns the full catalogue, providing clear usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- Removed
verychic_list_deals - Changed
verychic_offer_details2 fields changed- changed
Input schema / properties / external_id / descriptionPrevious value: -"The offer's numeric `external_id`, copied from a `verychic_list_deals`/`verychic_search_offers` result. Identifies the offer together with `source`."New value: +"The offer's numeric `external_id`, copied from a `verychic_search_offers` result. Identifies the offer together with `source`." - changed
Input schema / properties / source / descriptionPrevious value: -"The offer's source type, copied verbatim from the `source` field of a `verychic_list_deals`/`verychic_search_offers` result. One of 'ORCHESTRA' (a single hotel) or 'ORCHESTRA_TO' (a tour-operator package). Packages have no per-date availability."New value: +"The offer's source type, copied verbatim from the `source` field of a `verychic_search_offers` result. One of 'ORCHESTRA' (a single hotel) or 'ORCHESTRA_TO' (a tour-operator package). Packages have no per-date availability."
3 tool updates
- Changed
verychic_list_deals8 fields changed- added
Output schema / $defs / OfferOut / properties / distance_kmAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Distance Km" +} - added
Output schema / $defs / OfferOut / properties / flights_includedAdded value: +{ + "title": "Flights Included", + "type": "boolean" +} - added
Output schema / $defs / OfferOut / properties / price_labelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Price Label" +} - added
Output schema / $defs / OfferOut / properties / price_with_flightsAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Price With Flights" +} - added
Output schema / $defs / OfferOut / properties / ratingAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Rating" +} - added
Output schema / $defs / OfferOut / properties / starsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Stars" +} - added
Output schema / $defs / OfferOut / properties / themesAdded value: +{ + "items": { + "type": "string" + }, + "title": "Themes", + "type": "array" +} - changed
Output schema / $defs / OfferOut / requiredPrevious value: -[ - "source", - "external_id", - "name", - "destination", - "country", - "price", - "currency", - "short_desc", - "discount", - "url_name", - "sales_mode", - "offer_end_date", - "latitude", - "longitude", - "image", - "advantages", - "offer_url" -]New value: +[ + "source", + "external_id", + "name", + "destination", + "country", + "price", + "currency", + "short_desc", + "discount", + "url_name", + "sales_mode", + "offer_end_date", + "latitude", + "longitude", + "image", + "advantages", + "themes", + "stars", + "price_label", + "price_with_flights", + "flights_included", + "rating", + "distance_km", + "offer_url" +]
- Changed
verychic_offer_details8 fields changed- added
Output schema / $defs / OfferOut / properties / distance_kmAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Distance Km" +} - added
Output schema / $defs / OfferOut / properties / flights_includedAdded value: +{ + "title": "Flights Included", + "type": "boolean" +} - added
Output schema / $defs / OfferOut / properties / price_labelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Price Label" +} - added
Output schema / $defs / OfferOut / properties / price_with_flightsAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Price With Flights" +} - added
Output schema / $defs / OfferOut / properties / ratingAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Rating" +} - added
Output schema / $defs / OfferOut / properties / starsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Stars" +} - added
Output schema / $defs / OfferOut / properties / themesAdded value: +{ + "items": { + "type": "string" + }, + "title": "Themes", + "type": "array" +} - changed
Output schema / $defs / OfferOut / requiredPrevious value: -[ - "source", - "external_id", - "name", - "destination", - "country", - "price", - "currency", - "short_desc", - "discount", - "url_name", - "sales_mode", - "offer_end_date", - "latitude", - "longitude", - "image", - "advantages", - "offer_url" -]New value: +[ + "source", + "external_id", + "name", + "destination", + "country", + "price", + "currency", + "short_desc", + "discount", + "url_name", + "sales_mode", + "offer_end_date", + "latitude", + "longitude", + "image", + "advantages", + "themes", + "stars", + "price_label", + "price_with_flights", + "flights_included", + "rating", + "distance_km", + "offer_url" +]
- Changed
verychic_search_offers17 fields changed- added
Input schema / properties / flights_includedAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Filter on whether flights are part of the offer: true keeps flight-bearing offers, false keeps hotel-only offers. Omit to not filter.", + "title": "Flights Included" +} - changed
Input schema / properties / limit / descriptionPrevious value: -"Maximum number of matching offers to return (default 20), applied after filtering. No pagination."New value: +"Maximum number of matching offers to return (default 20), applied after filtering and sorting. No pagination." - added
Input schema / properties / min_discountAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Keep only offers whose discount percentage is at least this value (e.g. 40 for '40% off or more'). Offers with no discount are excluded. Omit for no discount filter.", + "title": "Min Discount" +} - added
Input schema / properties / min_starsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Keep only offers with at least this hotel star rating (1-5), parsed from the offer name. Offers with no detectable rating are excluded. Omit to not filter by stars.", + "title": "Min Stars" +} - added
Input schema / properties / near_latAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Latitude of a search center for proximity search, in decimal degrees. Must be given together with near_lng. Omit for no geo search.", + "title": "Near Lat" +} - added
Input schema / properties / near_lngAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Longitude of a search center for proximity search, in decimal degrees. Must be given together with near_lat. Omit for no geo search.", + "title": "Near Lng" +} - added
Input schema / properties / radius_kmAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Keep only offers within this many kilometers of the near_lat/near_lng center. Requires near_lat and near_lng. Omit for no radius.", + "title": "Radius Km" +} - added
Input schema / properties / sort_byAdded value: +{ + "anyOf": [ + { + "enum": [ + "discount", + "price", + "rating", + "stars", + "distance" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Sort the results: 'discount' (biggest discount first), 'price' (cheapest first), 'rating' (best-rated first), 'stars' (most stars first), 'distance' (nearest first, requires near_lat/near_lng). Offers missing the sort value are placed last. Omit to keep catalogue order.", + "title": "Sort By" +} - added
Input schema / properties / themeAdded value: +{ + "anyOf": [ + { + "enum": [ + "adults_only", + "city_break", + "cruise", + "island", + "last_minute", + "luxury", + "mountain", + "nature", + "pool", + "romantic", + "rooftop", + "spa", + "sun", + "villa" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Keep only offers matching this curated theme, decoded from the catalogue's thematics tags. One of: adults_only, city_break, cruise, island, last_minute, luxury, mountain, nature, pool, romantic, rooftop, spa, sun, villa. Omit to not filter by theme.", + "title": "Theme" +} - added
Output schema / $defs / OfferOut / properties / distance_kmAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Distance Km" +} - added
Output schema / $defs / OfferOut / properties / flights_includedAdded value: +{ + "title": "Flights Included", + "type": "boolean" +} - added
Output schema / $defs / OfferOut / properties / price_labelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Price Label" +} - added
Output schema / $defs / OfferOut / properties / price_with_flightsAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Price With Flights" +} - added
Output schema / $defs / OfferOut / properties / ratingAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Rating" +} - added
Output schema / $defs / OfferOut / properties / starsAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Stars" +} - added
Output schema / $defs / OfferOut / properties / themesAdded value: +{ + "items": { + "type": "string" + }, + "title": "Themes", + "type": "array" +} - changed
Output schema / $defs / OfferOut / requiredPrevious value: -[ - "source", - "external_id", - "name", - "destination", - "country", - "price", - "currency", - "short_desc", - "discount", - "url_name", - "sales_mode", - "offer_end_date", - "latitude", - "longitude", - "image", - "advantages", - "offer_url" -]New value: +[ + "source", + "external_id", + "name", + "destination", + "country", + "price", + "currency", + "short_desc", + "discount", + "url_name", + "sales_mode", + "offer_end_date", + "latitude", + "longitude", + "image", + "advantages", + "themes", + "stars", + "price_label", + "price_with_flights", + "flights_included", + "rating", + "distance_km", + "offer_url" +]
3 tool updates
- Changed
verychic_list_deals4 fields changed- added
Output schema / $defsAdded value: +{ + "OfferOut": { + "properties": { + "advantages": { + "items": { + "type": "string" + }, + "title": "Advantages", + "type": "array" + }, + "country": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Country" + }, + "currency": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Currency" + }, + "destination": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Destination" + }, + "discount": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Discount" + }, + "external_id": { + "title": "External Id", + "type": "integer" + }, + "image": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Image" + }, + "latitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Latitude" + }, + "longitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Longitude" + }, + "name": { + "title": "Name", + "type": "string" + }, + "offer_end_date": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Offer End Date" + }, + "offer_url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Offer Url" + }, + "price": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Price" + }, + "sales_mode": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Sales Mode" + }, + "short_desc": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Short Desc" + }, + "source": { + "title": "Source", + "type": "string" + }, + "url_name": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Url Name" + } + }, + "required": [ + "source", + "external_id", + "name", + "destination", + "country", + "price", + "currency", + "short_desc", + "discount", + "url_name", + "sales_mode", + "offer_end_date", + "latitude", + "longitude", + "image", + "advantages", + "offer_url" + ], + "title": "OfferOut", + "type": "object" + } +} - added
Output schema / properties / result / items / $refAdded value: +"#/$defs/OfferOut" - removed
Output schema / properties / result / items / additionalPropertiesRemoved value: -true - removed
Output schema / properties / result / items / typeRemoved value: -"object"
- Changed
verychic_offer_details1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$defs": { + "AvailabilityOut": { + "properties": { + "currency": { + "title": "Currency", + "type": "string" + }, + "date": { + "title": "Date", + "type": "string" + }, + "days": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Days" + }, + "departure_city_code": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Departure City Code" + }, + "nights": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Nights" + }, + "price": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Price" + } + }, + "required": [ + "date", + "price", + "currency", + "nights", + "days", + "departure_city_code" + ], + "title": "AvailabilityOut", + "type": "object" + }, + "OfferOut": { + "properties": { + "advantages": { + "items": { + "type": "string" + }, + "title": "Advantages", + "type": "array" + }, + "country": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Country" + }, + "currency": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Currency" + }, + "destination": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Destination" + }, + "discount": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Discount" + }, + "external_id": { + "title": "External Id", + "type": "integer" + }, + "image": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Image" + }, + "latitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Latitude" + }, + "longitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Longitude" + }, + "name": { + "title": "Name", + "type": "string" + }, + "offer_end_date": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Offer End Date" + }, + "offer_url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Offer Url" + }, + "price": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Price" + }, + "sales_mode": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Sales Mode" + }, + "short_desc": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Short Desc" + }, + "source": { + "title": "Source", + "type": "string" + }, + "url_name": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Url Name" + } + }, + "required": [ + "source", + "external_id", + "name", + "destination", + "country", + "price", + "currency", + "short_desc", + "discount", + "url_name", + "sales_mode", + "offer_end_date", + "latitude", + "longitude", + "image", + "advantages", + "offer_url" + ], + "title": "OfferOut", + "type": "object" + } + }, + "properties": { + "advantages": { + "items": { + "type": "string" + }, + "title": "Advantages", + "type": "array" + }, + "availabilities": { + "items": { + "$ref": "#/$defs/AvailabilityOut" + }, + "title": "Availabilities", + "type": "array" + }, + "availabilities_supported": { + "title": "Availabilities Supported", + "type": "boolean" + }, + "cheapest_price": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Cheapest Price" + }, + "gallery": { + "items": { + "type": "string" + }, + "title": "Gallery", + "type": "array" + }, + "included_added_values": { + "items": { + "type": "string" + }, + "title": "Included Added Values", + "type": "array" + }, + "non_included_added_values": { + "items": { + "type": "string" + }, + "title": "Non Included Added Values", + "type": "array" + }, + "offer": { + "$ref": "#/$defs/OfferOut" + } + }, + "required": [ + "offer", + "advantages", + "included_added_values", + "non_included_added_values", + "gallery", + "availabilities", + "availabilities_supported", + "cheapest_price" + ], + "title": "OfferDetailsOut", + "type": "object" +}
- Changed
verychic_search_offers4 fields changed- added
Output schema / $defsAdded value: +{ + "OfferOut": { + "properties": { + "advantages": { + "items": { + "type": "string" + }, + "title": "Advantages", + "type": "array" + }, + "country": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Country" + }, + "currency": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Currency" + }, + "destination": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Destination" + }, + "discount": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Discount" + }, + "external_id": { + "title": "External Id", + "type": "integer" + }, + "image": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Image" + }, + "latitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Latitude" + }, + "longitude": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Longitude" + }, + "name": { + "title": "Name", + "type": "string" + }, + "offer_end_date": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Offer End Date" + }, + "offer_url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Offer Url" + }, + "price": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "title": "Price" + }, + "sales_mode": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Sales Mode" + }, + "short_desc": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Short Desc" + }, + "source": { + "title": "Source", + "type": "string" + }, + "url_name": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Url Name" + } + }, + "required": [ + "source", + "external_id", + "name", + "destination", + "country", + "price", + "currency", + "short_desc", + "discount", + "url_name", + "sales_mode", + "offer_end_date", + "latitude", + "longitude", + "image", + "advantages", + "offer_url" + ], + "title": "OfferOut", + "type": "object" + } +} - added
Output schema / properties / result / items / $refAdded value: +"#/$defs/OfferOut" - removed
Output schema / properties / result / items / additionalPropertiesRemoved value: -true - removed
Output schema / properties / result / items / typeRemoved value: -"object"
3 tool updates
- Changed
verychic_list_deals1 field changed- added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of offers to return (default 20). Caps the result size only; there is no pagination or cursor, so this always returns the first N offers of the live catalogue."
- Changed
verychic_offer_details2 fields changed- added
Input schema / properties / external_id / descriptionAdded value: +"The offer's numeric `external_id`, copied from a `verychic_list_deals`/`verychic_search_offers` result. Identifies the offer together with `source`." - added
Input schema / properties / source / descriptionAdded value: +"The offer's source type, copied verbatim from the `source` field of a `verychic_list_deals`/`verychic_search_offers` result. One of 'ORCHESTRA' (a single hotel) or 'ORCHESTRA_TO' (a tour-operator package). Packages have no per-date availability."
- Changed
verychic_search_offers4 fields changed- added
Input schema / properties / country / descriptionAdded value: +"Exact country name, case-insensitive, as spelled in the (French) catalogue, e.g. 'France', 'Italie', 'Grece'. Omit to not filter by country." - added
Input schema / properties / destination / descriptionAdded value: +"Case-insensitive substring matched against each offer's destination AND name (e.g. 'paris', 'maldives', 'crete'). Omit to not filter by destination." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of matching offers to return (default 20), applied after filtering. No pagination." - added
Input schema / properties / max_price / descriptionAdded value: +"Inclusive upper bound on the offer price, in EUR. Offers with no price are excluded when this is set. Omit for no price cap."
3 tool updates
- First observed
verychic_list_deals - First observed
verychic_offer_details - First observed
verychic_search_offers
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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!
Related MCP Connectors
Hotel booking MCP server. Search, book, and manage reservations across 250K+ properties worldwide.
Remote MCP server for hotel rate monitoring, parity checks, and pricing intelligence via Apify.
Read-only MCP server for public WeJob jobs, formations, and companies.
MCP server for French (BOAMP) + EU (TED) public procurement data via TenderAPI.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceMCP server to query French Open Data from data.gouv.fr-
- FlicenseAqualityDmaintenanceA FastMCP server that exposes hospitality data — accommodations, events, and gastronomy — through a unified MCP interface, supporting multiple worlds for real or fictional data.5-
- FlicenseNot gradedqualityBmaintenanceMCP server that exposes the Vikey API for reservation management, property listing, and payment information retrieval.-
- FlicenseAqualityBmaintenanceA read-only MCP server that lets AI assistants query the WebHotelier REST API for live hotel data, including property info, room availability, rates, calendars, and offers via natural language tools.8-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The two tools have completely distinct purposes: one searches/filters offers, the other retrieves details for a specific offer. No overlap in functionality.
Both tools follow a consistent 'verychic_verb_noun' pattern: 'verychic_search_offers' and 'verychic_offer_details'.
With only 2 tools, the set is minimal but covers the core browsing workflow (search and details). However, it falls below the typical 3-15 tool range, which suggests a slightly under-scoped surface.
The tools provide search and detail retrieval, which is reasonable for a read-only hotel deals server. However, missing capabilities like comparing multiple offers or filtering by date range are notable gaps.