Unofficial read-only MCP server for VeryChic hotel offers
Project description
VeryChic MCP
Find, filter, and price VeryChic hotel deals from any MCP client
Browse current flash-sale offers, filter them by destination or price, and read an offer's availability and prices by date. Read-only, anonymous, no account needed.
Read-only and anonymous. This server only searches and reads offers — it never books, never logs in, and uses no credentials. A conservative rate limit (≥ 1 s between requests) is built into the client. See the disclaimer for terms of use.
Quick start
Add the server to your MCP client config. With uv installed,
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 same command/args pair works in every stdio client; only the wrapping config differs.
These configs are for local clients (stdio). For cloud clients like claude.ai or Cowork,
which connect over HTTPS instead, see Use from Claude.ai or Cowork.
Claude Code (one-liner)
claude mcp add verychic -- uvx verychic-mcp
Cursor — ~/.cursor/mcp.json
{
"mcpServers": {
"verychic": {
"command": "uvx",
"args": ["verychic-mcp"]
}
}
}
VS Code — .vscode/mcp.json (note the servers key)
{
"servers": {
"verychic": {
"command": "uvx",
"args": ["verychic-mcp"]
}
}
}
Windsurf — ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"verychic": {
"command": "uvx",
"args": ["verychic-mcp"]
}
}
}
Tools
| Tool | What it returns |
|---|---|
verychic_list_deals |
The current VeryChic offers, with a configurable limit. |
verychic_search_offers |
Offers filtered by destination (substring match), country (exact match), and max_price. |
verychic_offer_details |
One offer's content (advantages, gallery) plus its availability and prices by date. |
Every call is read-only and anonymous, with a conservative rate limit built into the client.
verychic_list_deals
Returns the current offers (a list of offer objects).
| Parameter | Type | Required | Description |
|---|---|---|---|
limit |
integer | no | Max number of offers to return. Defaults to 20. |
verychic_search_offers
Returns the offers matching every filter you pass (filters are combined with AND).
| Parameter | Type | Required | Description |
|---|---|---|---|
destination |
string | no | Case-insensitive substring matched against the offer's destination or name. |
country |
string | no | Exact, case-insensitive country match (e.g. "Espagne"). |
max_price |
number | no | Keep only offers priced at or below this value. |
limit |
integer | no | Max number of offers to return. Defaults to 20. |
verychic_offer_details
Returns one offer's full content plus, for hotels, its day-by-day availability and prices.
| Parameter | Type | Required | Description |
|---|---|---|---|
source |
string | yes | ORCHESTRA for a hotel, ORCHESTRA_TO for a tour-operator package. |
external_id |
integer | yes | The offer's id, as returned by verychic_list_deals / verychic_search_offers. |
Examples
Ask your assistant things like:
- "List the current VeryChic deals."
- "Search VeryChic offers in Spain under 600 euros."
- "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 sets
availabilities_supported: falseso an emptyavailabilitiesreads as "not supported for this offer type", not "no dates available".
Offers carry a source (ORCHESTRA for a hotel, ORCHESTRA_TO for a package) and an
external_id. Both come back from verychic_list_deals and verychic_search_offers, so the
assistant can pass them to verychic_offer_details on its own.
A verychic_list_deals result 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_details adds gallery, included_added_values, a cheapest_price, and the
day-by-day availabilities for 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 }
]
}
Use from Claude.ai or Cowork
Unlike the local clients in Quick start, cloud clients such as claude.ai and
Cowork only connect to remote MCP servers over HTTPS, not to a local process. To use VeryChic
MCP there, host it yourself in streamable-http mode
(verychic-mcp --transport streamable-http, behind HTTPS) and add it as a custom connector,
pasting your deployment URL with the /mcp path.
A public instance is deployed for convenience at https://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 the uvx command above or host the streamable-http mode.
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.
How it works
The VeryChic web app talks to a public JSON API under
https://api.verychic.com/verychic-endpoints/v1 (plus search.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.
Development
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 a vX.Y.Z tag runs the tests, builds the package, and
publishes it to PyPI through GitHub Actions with trusted publishing,
so no token is stored anywhere.
Disclaimer
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's sui 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.
License
MIT. See LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file verychic_mcp-0.1.3.tar.gz.
File metadata
- Download URL: verychic_mcp-0.1.3.tar.gz
- Upload date:
- Size: 53.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8a9f6439ce749943eb378e681d94005e1e5a16c35f38a6c72dd4ee111f5d77b
|
|
| MD5 |
f32cb7645a583277e7fa400099d74d27
|
|
| BLAKE2b-256 |
23126c3dc771a3a0a9cfa20d8a6c092ac24c8dd5283f48a8672f488a7103365b
|
Provenance
The following attestation bundles were made for verychic_mcp-0.1.3.tar.gz:
Publisher:
release.yml on jordantete/verychic-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
verychic_mcp-0.1.3.tar.gz -
Subject digest:
e8a9f6439ce749943eb378e681d94005e1e5a16c35f38a6c72dd4ee111f5d77b - Sigstore transparency entry: 1924015243
- Sigstore integration time:
-
Permalink:
jordantete/verychic-mcp@2b7521ad237eacfea0513f8f0ffd957599eb7ff0 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/jordantete
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2b7521ad237eacfea0513f8f0ffd957599eb7ff0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file verychic_mcp-0.1.3-py3-none-any.whl.
File metadata
- Download URL: verychic_mcp-0.1.3-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdc0f1ae6941deabec06d7a0df60b5f872673a260321ec8bf32254b14bac911a
|
|
| MD5 |
f2e1079e9ee961d8a83b2dc3b6821ffb
|
|
| BLAKE2b-256 |
800e757bcdc7e6ce70dc13846aba8774245deaf1bb99e1c94b313115e8341ef9
|
Provenance
The following attestation bundles were made for verychic_mcp-0.1.3-py3-none-any.whl:
Publisher:
release.yml on jordantete/verychic-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
verychic_mcp-0.1.3-py3-none-any.whl -
Subject digest:
cdc0f1ae6941deabec06d7a0df60b5f872673a260321ec8bf32254b14bac911a - Sigstore transparency entry: 1924015345
- Sigstore integration time:
-
Permalink:
jordantete/verychic-mcp@2b7521ad237eacfea0513f8f0ffd957599eb7ff0 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/jordantete
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2b7521ad237eacfea0513f8f0ffd957599eb7ff0 -
Trigger Event:
push
-
Statement type: