RappiMCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RappiMCPsearch for pasta in my nearest supermarket"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RappiMCP
Program : RappiMCP
Author : Bastian Girardi
Date : April 2, 2026
Purpose : Built to automate grocery and delivery purchases on Rappi Chile
through Claude — eliminating the need to manually browse the app
when you just want to tell an AI what you need and have it ordered.An MCP (Model Context Protocol) server that gives Claude full control over Rappi Chile — browse stores, search products, manage the cart, and open checkout — all through natural language.
How it works
The server is built with FastMCP and exposes tools that Claude can call. It communicates with Rappi via their internal web API (services.rappi.cl), authenticated with tokens extracted directly from a Chrome browser session using the Chrome DevTools Protocol (CDP).
Claude ──tools──▶ rappi_mcp.py ──HTTP──▶ services.rappi.cl
│
└──CDP──▶ Chrome (auth + checkout navigation)Setup
1. Install dependencies
pip install -r requirements.txt2. Configure Claude Code
Add this to your Claude Code MCP settings (claude_desktop_config.json or equivalent):
{
"mcpServers": {
"RappiMCP": {
"command": "python",
"args": ["C:/path/to/RappiMCP/rappi_mcp.py"]
}
}
}3. Authenticate
On first use, call rappi_auth to extract your Rappi credentials from Chrome and save them to .env. No manual token copying needed.
Authentication
Rappi uses rotating JWT tokens stored as browser cookies. The auth flow:
rappi_auth(use_existing_chrome=False)— launches a dedicated Chrome window at rappi.cl (on CDP port9223) and waits up to 2 minutes for you to log inOnce logged in, it reads three cookies via CDP:
rappi.data(Base64 JSON) →user_iddeviceid→device_idrappi_refresh_token→refresh_token
Exchanges the refresh token for a fresh
access_tokenviaPOST /api/rocket/refresh-tokenWrites all four values to
.env
rappi_auth(use_existing_chrome=True) (default) — attaches to an already-running Chrome with --remote-debugging-port=9223 and reads cookies immediately (you must already be logged in).
Token refresh
RappiClient handles token rotation automatically. If any API response includes the header x-refresh-token: true, it transparently refreshes both tokens and retries the request.
Environment variables
RAPPI_ACCESS_TOKEN — Bearer token for API calls
RAPPI_REFRESH_TOKEN — Used to obtain new access tokens
RAPPI_DEVICE_ID — UUID identifying the browser session
RAPPI_USER_ID — Numeric Rappi user IDSee .env.example for the expected format.
Tools reference
rappi_auth(use_existing_chrome=True)
Extract credentials from Chrome and write them to .env. Set use_existing_chrome=False to launch a fresh Chrome window and wait for login.
rappi_reload()
Reload tokens from .env and restart the API client — without restarting the MCP server. Useful after manually editing .env.
rappi_list_stores(category, query, limit)
List stores available for delivery near your saved address.
Param | Default | Description |
|
| Store category: |
|
| Optional name filter |
|
| Max results |
Returns: store_id, name, store_type, lat, lng, eta, shipping_cost.
store_idis used byrappi_search_products.store_typeis used by all cart tools.
rappi_get_store(store_id)
Look up metadata for a specific store by its numeric ID. Returns store_type (the slug needed for cart operations).
rappi_search_products(store_id, query, size, offset)
Search products within a store. Queries in Spanish work best.
Param | Default | Description |
| required | From |
| required | Search term (e.g. |
|
| Results per page (max 40) |
|
| Pagination offset |
Returns: composite_id, name, trademark, price, real_price, discount, quantity, unit_type, sale_type, in_stock.
Use
composite_idandsale_typewhen adding to cart.
rappi_get_cart(store_type)
Read the current cart contents for a given store. Returns a list of items with composite_id, units, sale_type, name, price.
rappi_add_to_cart(store_id, store_type, composite_id, units, sale_type)
Add a product to the cart (or increment its quantity if already present). Internally: reads current cart → appends/increments → writes back via a full PUT.
rappi_remove_from_cart(store_id, store_type, composite_id)
Remove a specific product from the cart by its composite_id.
rappi_clear_cart(store_id, store_type)
Empty the entire cart for a store.
rappi_checkout(store_type)
Navigate Chrome to the checkout page for a store. Each store has its own checkout URL:
https://www.rappi.cl/checkout/{store_type}Examples:
turbo_rappidrinks_nc→rappi.cl/checkout/turbo_rappidrinks_nccruz_verde_rappido_nc→rappi.cl/checkout/cruz_verde_rappido_nclider→rappi.cl/checkout/lider
Rappi does not support consolidated multi-store checkout. Each store cart must be checked out separately.
Typical flow
1. rappi_auth() # authenticate once
2. rappi_list_stores(category="farma") # find pharmacies
3. rappi_search_products(store_id, "preservativos") # search
4. rappi_add_to_cart(store_id, store_type, composite_id, 1, "U")
5. rappi_checkout(store_type) # open checkout in ChromeFile structure
RappiMCP/
├── rappi_mcp.py # MCP server — tool definitions, auth logic, CDP helpers
├── rappi_client.py # Rappi API client with automatic token refresh
├── requirements.txt # Python dependencies
├── .env # Credentials (git-ignored)
└── .env.example # Credentials templateNotes
The server uses CDP port
9223(not the default9222) to avoid conflicts with other toolsCheckout navigation also uses CDP — the same Chrome instance used for auth
store_typeslugs come fromrappi_list_storesand must be passed exactly as returned (e.g."turbo_rappidrinks_nc", not"turbo")
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bgirardi99/RappiMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server