Server data from the Official MCP Registry
MCP server for E.Leclerc Drive — search products, manage cart, and order groceries from Claude
MCP server for E.Leclerc Drive — search products, manage cart, and order groceries from Claude
A well-architected MCP server for E.Leclerc Drive grocery ordering with proper authentication via real Chrome automation. The server implements thoughtful anti-detection measures, input validation, and error handling. Code quality is high with clear separation of concerns. Minor findings relate to error handling edge cases and missing null-safety checks in parsing logic, but these do not pose security risks given the controlled nature of the application. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
7 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: LECLERC_STORE_ID
Environment variable: LECLERC_HOST
Environment variable: LECLERC_COOKIE
Environment variable: LECLERC_CHROME_PROFILE
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-skunkobi-leclerc-drive": {
"env": {
"LECLERC_HOST": "your-leclerc-host-here",
"LECLERC_COOKIE": "your-leclerc-cookie-here",
"LECLERC_STORE_ID": "your-leclerc-store-id-here",
"LECLERC_CHROME_PROFILE": "your-leclerc-chrome-profile-here"
},
"args": [
"-y",
"mcp-leclerc-drive"
],
"command": "npx"
}
}
}From the project's GitHub README.
The first open-source MCP server for E.Leclerc Drive — let Claude search products, manage a cart, and prepare grocery orders natively, instead of clicking through the website.
🟢 v0.3 — working & DataDome-proof. All eight tools are validated end-to-end against the live site. Requests run inside a real Chrome driven over CDP, so they pass DataDome's bot protection (which blocks headless clients and cookie-replay). You log into Leclerc Drive once in the window that opens; the session persists. See
docs/api-capture.mdfor the reverse-engineered API.
E.Leclerc Drive has no public API. Today the only way to automate it is browser automation — slow (~3–5 s per item) and fragile (blind clicks). This project exposes the underlying operations as proper MCP tools so any MCP client (Claude Desktop, Claude Code) can drive it directly.
| Tool | Description |
|---|---|
find_stores(query) | Find drives near a postal code or city → name, id, service type, distance, host. |
set_store(store_id) | Select & remember the active store (resolves the right host automatically). |
get_store() | Show the currently selected store. |
search_product(query) | Search the catalogue → products with price, price/kg, Nutri-Score, availability, and an id. |
add_to_cart(product_id, quantity?) | Add a product to the cart. |
remove_from_cart(product_id) | Remove a line from the cart. |
update_quantity(product_id, quantity) | Set a line's quantity (0 removes it). |
get_cart() | Read the full cart with total. |
docs/api-capture.md)find_stores / set_store)WebSocket)git clone https://github.com/skunkobi/mcp-leclerc-drive.git
cd mcp-leclerc-drive
npm install
npm run build
Leclerc Drive is protected by DataDome, which blocks non-browser traffic (headless clients, cookie-replay) with HTTP 403 once it escalates to active challenge mode. The only thing that reliably passes is a real browser that executes the challenge. So that's what the server uses:
~/.mcp-leclerc-drive/chrome) and a debug
port — no automation flags, so navigator.webdriver stays false.No cookies are read or stored; there's no Keychain prompt. The server must run on the same machine as Chrome, and a window does open (headless is detectable by DataDome — don't enable it unless you know the risk).
| Env var | Default | Description |
|---|---|---|
LECLERC_STORE_ID | 053701 | Default store id (overridden at runtime by set_store). |
LECLERC_HOST | fd9-courses.leclercdrive.fr | Default backend host (the fdN prefix varies by store). |
LECLERC_CHROME_PATH | auto | Path to the Chrome binary, if not in the default location. |
LECLERC_CHROME_PROFILE_DIR | ~/.mcp-leclerc-drive/chrome | Persistent Chrome profile dir. |
LECLERC_CHROME_PORT | 9222 | CDP remote-debugging port. |
LECLERC_HEADLESS | false | Run Chrome headless (⚠️ DataDome-detectable — not recommended). |
LECLERC_MIN_INTERVAL_MS | 1000 | Minimum delay between two requests (hygiene). |
LECLERC_JITTER_MS | 400 | Extra random jitter added between requests. |
LECLERC_MAX_RETRIES | 3 | Retries on a transient 403/429 before giving up. |
LECLERC_BACKOFF_BASE_MS | 1500 | Base retry backoff (doubles each attempt). |
The server still serializes and spaces out requests (single queue, ~1 s + jitter, retry with backoff) to stay polite — good hygiene even though the browser now handles DataDome.
The easiest way: just ask, in the conversation. No env vars required.
> "trouve mon drive vers 44000" → find_stores lists nearby drives
> "prends Rezé Atout Sud" → set_store remembers it (correct host resolved)
> "cherche du lait" → runs on that store
set_store persists your choice to ~/.mcp-leclerc-drive/config.json, so it
sticks across sessions, and it resolves the correct backend host for you (the
fdN prefix genuinely varies per store — fd8, fd9, fd14…).
⚠️ One drive at a time. Leclerc binds your session to a single drive. The store you
set_storeto must be the one your Chrome session is logged into — which is the normal case (your own drive). Switching to an arbitrary other drive your browser isn't on will return a "session expired" error.
You can still hard-set the store via LECLERC_STORE_ID / LECLERC_HOST env vars
if you prefer (e.g. for headless deploys). To find them manually: your Drive URL
looks like https://fd9-courses.leclercdrive.fr/magasin-053701-053701-Your-Town/
— the 6-digit number is the store id, the fdN-courses.leclercdrive.fr part is
the host.
mcp config)Install straight from npm — no clone needed:
# Claude Code
claude mcp add leclerc-drive -- npx -y mcp-leclerc-drive
Or in a Claude Desktop config:
{
"mcpServers": {
"leclerc-drive": {
"command": "npx",
"args": ["-y", "mcp-leclerc-drive"]
}
}
}
No env needed — pick your store in-conversation with find_stores / set_store.
On first use a Chrome window opens: log into Leclerc Drive once and you're set.
npm run dev # tsc --watch
npm run typecheck # type-check without emitting
npm run inspect # run under the MCP Inspector
src/
index.ts # MCP server: registers the 8 tools over stdio
config.ts # env-based config (store, host, Chrome/CDP, throttle)
types.ts # Product / CartItem / Cart
store.ts # active store selection + persistence (~/.mcp-leclerc-drive)
browser.ts # ChromeSession: drives real Chrome via CDP → beats DataDome
leclerc/
client.ts # Leclerc Drive backend client (search + cart)
locator.ts # store finder: postal code / city → nearby drives
throttle.ts # request serialization + spacing + retry (hygiene)
docs/
api-capture.md # the reverse-engineered Leclerc Drive API
This is a community tool — contributions are very welcome, whether it's a bug fix, support for your store, or a whole new capability (checkout, delivery slots, saved lists…).
See CONTRIBUTING.md for dev setup, how to smoke-test
against your own account (npm run smoke), and — most useful for this project —
a short guide on how to reverse-engineer a new Leclerc Drive endpoint and
wire it in. Good first issues are listed in the status checklist above.
Feedback, bug reports, and ideas are very welcome.
Unofficial. Not affiliated with or endorsed by E.Leclerc. Use with your own account, at your own risk, in line with the site's terms of service. Intended for personal automation of your own grocery shopping.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.