Raley
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., "@RaleyFind organic spinach with the best unit price"
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.
Raley
Named after someone who made grocery day feel less like a hostage negotiation with your own pantry.
Automated grocery shopping assistant with intelligent unit pricing, automatic coupon clipping, and an MCP server so your AI can argue with produce departments on your behalf.
What This Does
You tell Raley what you need. Raley finds the best deal, calculates unit pricing across every bizarre measurement the grocery industry has invented (per oz, per lb, per "each" — what even is an "each"), clips relevant coupons, and manages your cart. All through a CLI or Claude Desktop.
The grocery store API uses F5 bot detection, so Raley shells out to curl for TLS fingerprint evasion instead of using Python HTTP libraries that get immediately flagged. Yes, we're using subprocess.run(["curl", ...]) in 2026. Sometimes the unglamorous solution is the one that actually works.
Related MCP server: RappiMCP
Install
curl -fsSL https://raw.githubusercontent.com/johnzfitch/raley-bot/main/install.sh | bashThis clones the repo, sets up a Python venv, installs dependencies, and symlinks raley-bot to ~/.local/bin. Requires git and curl (installs uv automatically if missing).
Then log in:
raley-bot loginManual Install
git clone https://github.com/johnzfitch/raley-bot.git
cd raley-bot
uv venv && source .venv/bin/activate
uv pip install -e ".[login]"
raley-bot loginCLI
raley search "organic spinach" # Find products with unit pricing
raley history # Previously purchased items
raley offers # Available coupons
raley clip-all # Clip everything. All of it.
raley status # Session health check
raley orders # Order history
raley points # Something Extra balanceMCP Server (Claude Desktop / Claude Code)
Claude Desktop — add to ~/.config/Claude/claude_desktop_config.json (Linux) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"raley-bot": {
"command": "uv",
"args": ["run", "--directory", "/path/to/raley-bot", "raley-mcp"]
}
}
}Claude Code — add to ~/.claude/settings.json:
{
"mcpServers": {
"raley-bot": {
"command": "/path/to/raley-bot/.venv/bin/raley-mcp",
"args": []
}
}
}The install script configures these automatically.
Then talk to Claude like a normal person:
"Find me avocados, show me the best deal"
"Add organic spinach to my cart"
"What's in my cart?"
"Plan a grocery run: milk, eggs, bread, chicken thighs"MCP Tools
Tool | What It Does |
| Find products with unit pricing and value analysis |
| Add items to cart (returns product name for confirmation) |
| Remove items by SKU |
| View cart (supports |
| List, clip all, or sync coupons to local DB |
| Parse freeform grocery lists, find best matches (does not auto-add) |
| Check price history from local tracking DB |
| Order history with date range and spend totals |
| Session status (no cookie values exposed) |
Unit Pricing
Raley normalizes prices across every unit the grocery industry throws at you. A 6CT avocado bag at $4.99 becomes $0.83/unit. A 2lb chicken breast at $8.99 becomes $0.28/oz. Weight-based items show per-oz or per-lb depending on size. Liquids get per-ml. Count items get per-unit.
{
"sku": "10101877",
"name": "Hass Avocado, 6CT Bag",
"price": "$4.99",
"cents": 499,
"per_unit": "$0.83"
}Architecture
raley_assistant/
├── api.py # Curl-based HTTP client (F5 evasion)
├── cli.py # Click CLI with Rich tables
├── mcp_server.py # MCP tools for Claude Desktop
├── unit_pricing.py # Normalize $/oz, $/lb, $/unit, $/ml
├── cart_builder.py # Freeform grocery list parsing
├── reasoning.py # Purchase frequency analysis
├── db.py # SQLite price history tracking
├── auth.py # Browser-based login (Helium/Selenium)
└── cookies.py # Session persistenceHow the HTTP Client Works
The store's API sits behind F5 BIG-IP with browser fingerprinting. Python's requests and httpx get blocked because their TLS handshakes don't match real browsers. Rather than importing a Rust-based TLS emulation library (the previous approach using rnet, which created a phantom dependency that was never wired in), the client shells out to system curl which naturally produces a browser-like TLS fingerprint. Ugly, effective, zero exotic dependencies.
Data Storage
What | Where |
Session cookies |
|
Price history DB |
|
Saved results |
|
Security Notes
Session cookies are written with 0600 permissions (owner read/write only). Cookie values are sanitized for header injection characters before being passed to curl. No credentials, tokens, or cookie values are ever logged, committed, or included in MCP tool responses. The auth tool explicitly returns session status without exposing cookie contents.
The search tool is read-only — it does not silently clip coupons or modify cart state. Write operations (add, remove, offers clip_all) are always explicit.
Rate limiting is applied to bulk operations (200ms between requests, 500ms every 10th request) to avoid triggering bot detection.
Preferences
Copy the example and edit to taste:
cp preferences.example.json ~/.config/raley-assistant/preferences.jsonFormat:
{
"milk": {
"brand": "Clover",
"type": "whole",
"size": "gallon"
},
"general": {
"prefer_local": true,
"organic_preference": "indifferent",
"budget_target": 200
}
}Troubleshooting
Session expired? → raley-bot login
Browser login not working? → Export cookies manually with a browser extension ("Cookie-Editor" or "EditThisCookie"), save as JSON, then raley login --file cookies.json
Database corrupted? → rm ~/.local/share/raley-assistant/raley.db (rebuilds on next search)
Coupon clip limit? → Some manufacturer coupons have daily claim limits. This is server-side, not a bug.
Development
uv pip install -e ".[dev]"
pytestDisclaimer
This is an unofficial tool not affiliated with or endorsed by the grocery chain. Use responsibly and in accordance with their Terms of Service. This project is named after a person, not a brand.
License
Unlicense
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/johnzfitch/raley-bot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server