- Home
- MCP servers
- Rami Levy
Rami Levy
- typescript
9
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"shilomagen-rami-levy-mcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-rami-levy"
],
"env": {
"COOKIE": "<YOUR_COOKIE>",
"ECOM_TOKEN": "<YOUR_ECOM_TOKEN>",
"RAMI_LEVY_API_KEY": "<YOUR_API_KEY>"
}
}
}
}You can interact with the Rami Levy Online Grocery API through an MCP-enabled server that lets you search products, manage a shopping cart, and proceed to checkout using natural language prompts. This MCP server exposes concrete actions you can trigger from your MCP client to perform common ecommerce tasks seamlessly with LLMs.
How to use
After you connect with an MCP client, you can perform the following actions: search for products, add items to your cart, remove items from your cart, and update item quantities. Use these tools to build conversational flows that fetch product data, assemble a cart with discounts, and navigate to checkout.
Key actions you can perform include:
- Search items by query to retrieve product name, price, image, and ID
- Add one or more items to the cart by product ID and quantity
- Remove items from the cart by providing the updated list of items to keep
- Update the quantity for a specific product in the cart
- Obtain the checkout URL to complete the purchase via the Rami Levy checkout flow
Available tools
search_items
Search for products in Rami Levy's catalog. Returns an array of products with name, price, image URL, and ID.
add_to_cart
Add one or more items to the shopping cart. Requires store and items with product IDs and quantities. Returns updated cart contents with prices and discounts.
remove_from_cart
Remove items from the cart by providing an updated list of items to keep. Returns updated cart contents.
update_quantity
Update the quantity for a product in the cart. Returns updated cart contents.