Verychic MCP
About
Read-only, anonymous MCP server for VeryChic flash-sale hotel deals, search and filter offers, and read availability and prices by date. Runs via uvx, no account needed.
Details
- Author
- jordantete
- Downloads
- 269
- Categories
- Other, Search, Knowledge Base
Jump to
- Read-only access to VeryChic hotel deals
- Three tools: list deals, search offers, offer details
- Anonymous usage – no account or API key needed
- Remote endpoint available for HTTP transports
- Unofficial, not affiliated with VeryChic
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Verychic MCPCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install with uvx verychic-mcp (stdio) or connect to the remote endpoint at https://verychic-mcp.fly.dev/mcp. No API key or account required.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"verychic mcp": {
"verychic": {
"command": "uvx",
"args": [
"verychic-mcp"
]
}
}
}
}
McpServers
{
"verychic": {
"command": "uvx",
"args": [
"verychic-mcp"
]
}
}
Find, filter, and price VeryChic hotel deals from any MCP client
Browse current flash-sale offers, filter them by destination, country, price, discount, stars, flights, theme, or proximity (and sort the results), then read an offer's availability and prices by date. Read-only, anonymous, no account needed.
Read-only and anonymous.This server onlysearches and readsoffers — it never books, never logs in, and uses no credentials. A conservative rate limit (≥ 1 s between requests) is built into the client. See thedisclaimerfor terms of use.
Adding the hosted VeryChic MCP server to Claude Desktop as a custom connector, then asking for Spain deals under €600:
Add the server to your MCP client config. Withuvinstalled, there is nothing to clone or install:
{ "mcpServers": { "verychic": { "command": "uvx", "args": ["verychic-mcp"] } } }
This runs the server over stdio, which is what Claude Desktop and Claude Code use. You can also run it directly:
uvx verychic-mcp # stdio (default) uvx verychic-mcp --help # all options
The samecommand/argspair works in every stdio client; only the wrapping config differs. These configs are forlocal clients(stdio). For cloud clients like claude.ai or Cowork, which connect over HTTPS instead, seeUse from Claude.ai or Cowork.
claude mcp add verychic -- uvx verychic-mcp
{ "mcpServers": { "verychic": { "command": "uvx", "args": ["verychic-mcp"] } } }
{ "servers": { "verychic": { "command": "uvx", "args": ["verychic-mcp"] } } }
{ "mcpServers": { "verychic": { "command": "uvx", "args": ["verychic-mcp"] } } }
Every call is read-only and anonymous, with a conservative rate limit built into the client.
Returns the offers matching every filter you pass (filters are combined with AND).
Returns one offer's full content plus, for hotels, its day-by-day availability and prices.
- "Browse the current VeryChic deals."
- "Search VeryChic offers in Spain under 600 euros."
- "Find 5-star spa hotels with at least 40% off, cheapest first."
- "Show VeryChic offers within 300 km of Paris (48.8566, 2.3522), nearest first."
- "Get the details and dated prices for the ORCHESTRA hotel offer 44983."
- "Get the details for the ORCHESTRA_TO package offer 301375." Tour-operator packages bundle flights with the hotel, so they do not expose day-by-day prices the way a single hotel does. The tool still returns the offer content and advantages, and setsavailabilities_supported: falseso an emptyavailabilitiesreads as "not supported for this offer type", not "no dates available".
Offers carry asource(ORCHESTRAfor a hotel,ORCHESTRA_TOfor a package) and anexternal_id. Both come back fromverychic_search_offers, so the assistant can pass them toverychic_offer_detailson its own.
Averychic_search_offersresult is a list of offer objects (one shown here, trimmed):
{ "source": "ORCHESTRA", "external_id": 36509, "name": "Sofitel New York *", "destination": "New York, États-Unis", "country": "États-Unis", "price": 182, "currency": "EUR", "discount": 57.0, "sales_mode": "FLASH", "offer_end_date": "2026-06-24T23:55+0200", "image": "https://.../sofitel-new-york.jpg", "advantages": ["Petit-déjeuner inclus", "VeryFlexible : réservez en toute sérénité !"], "offer_url": "https://www.verychic.fr/p/36509/etats-unis-new-york-hotel-sofitel-new-york" }
verychic_offer_detailsaddsgallery,included_added_values, acheapest_price, and the day-by-dayavailabilitiesfor a hotel:
{ "offer": { "source": "ORCHESTRA", "external_id": 44983, "name": "Hotel Kaktus Playa *", "...": "..." }, "cheapest_price": 169, "availabilities_supported": true, "availabilities": [ { "date": "20/06/2026", "price": 169, "currency": "EUR", "nights": 1, "days": 2 }, { "date": "21/06/2026", "price": 169, "currency": "EUR", "nights": 1, "days": 2 } ] }
A public instance is deployed for convenience athttps://verychic-mcp.fly.dev/mcp. Add it as a custom connector in claude.ai/Cowork, or wire it into a local client that speaks remote MCP:
{ "mcpServers": { "verychic": { "url": "https://verychic-mcp.fly.dev/mcp" } } }
It is best-effort and may be paused or rate-limited at any time — for anything beyond a quick try, run your own instance with theuvxcommand above or host thestreamable-httpmode.
Listing in Anthropic's official connector directory (next to Booking or Tripadvisor) is out of scope. That directory is reserved for partner integrations that pass a review this kind of tool would not.
The VeryChic web app talks to a public JSON API underhttps://api.verychic.com/verychic-endpoints/v1(plussearch.verychic.com). This server replays those same calls with a browser-like TLS fingerprint (curl_cffi), parses the responses into typed objects, and exposes them as MCP tools. Everything works without logging in. The one volatile request parameter,channelVersion, is read from the live site at startup and falls back to a known value if that read fails.
git clone https://github.com/jordantete/verychic-mcp.git && cd verychic-mcp pip install -e ".[dev]" pytest # offline tests, run against recorded fixtures pytest -m network # optional smoke test against the live API, low volume ruff check verychic_mcp tests
Releases are tag-driven. Pushing avX.Y.Ztag runs the tests, builds the package, and publishes it to PyPI through GitHub Actions withtrusted publishing, so no token is stored anywhere.
VeryChic MCP is not affiliated with, endorsed by, or connected to VeryChic or VeryChic SAS. It is an independent community tool for personal use that reads VeryChic's public web API the same way a browser does. You are responsible for complying with VeryChic's terms of sale, notably Article 9 on intellectual property and the database producer'ssui generis*right. Use it at your own risk, for personal and low-volume browsing only. Do not use it for bulk extraction or redistribution of VeryChic's data.
Semantic search through Dickens' classic tale. Find passages by meaning, theme, or concept - not just keywords.
MCP server for the AI Dev Jobs board - 8,400+ open AI/ML engineering roles at 489 companies. Search by role, location, salary, experience level. Live MCP endpoint aidevboard.com/mcp with 4 tools.
API for AI agents to search, license, and download b-roll video clips and voiceovers. Pay-per-request, no human interaction required.
Keyless remote MCP connector to search flights, hotels, and experiences at all-in prices (every mandatory tax and fee included) and book on breckenwander.com.
EU legal research for AI agents: semantic + full-text search over ~48,000 EUR-Lex acts including consolidated versions, daily drift monitoring, answers with verifiable CELEX citations. German, English, French. Remote MCP server at https://conformi.eu/api/mcp — free tier, no key required for article and timeline tools.
Corpus search and linguistic analysis for AI Agents
Security intelligence MCP server — 20 tools: CVE lookup (EPSS/KEV), domain recon, SSL, IP reputation, IOC, exploit search, code security. Free, no API key.
Destiny Codex turns the Destiny 2 Manifest (gibberish hash-reference JSON) into clean, AI-readable text. CLI + MCP server with 9 tools: search, filter, get, relationships, graph traversal, item comparison. Works for 100% of the manifest - all 83 definition tables supported generically.
Server that connects Claude/Cursor to the FatSecret Platform API. Search foods, track your diet, manage recipes, and monitor weight directly from your AI assistant.
Open-source Node.js FHIR MCP server with SMART Backend Services, metadata-aware search/CRUD tools, compact responses, FHIRPath filtering, safe pagination, audit events, and terminology lookup.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




