FrugalFinder
Enables users to manage FrugalFinder wishlists and receive deal-scan updates through a Telegram bot and webhook.
Click on "Deploy 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., "@FrugalFinderAdd a wishlist: 4K monitor, $300 budget, for photo editing."
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.
FrugalFinder
Best-value deal hunting as a service. Submit what you want + why + budget; a FrugalBot agent periodically scans and returns the best value opportunity — not the cheapest, not the fanciest.
Architecture (MVP)
[Web UI / Telegram bot / MCP client agents]
↓ POST
Vercel serverless API ──→ Vercel KV store (wishlists + scans)
↓ ↑
FrugalBot analyzer │ scheduled re-scan
(OpenRouter LLM) ────────┘ (Vercel Cron, hourly tick)Related MCP server: ecommerce-mcp-server
Endpoints
Route | Method | Purpose |
| GET | Web UI: submit wishlist, view analysis |
| POST | Create wishlist → runs first FrugalBot analysis |
| GET/PATCH | Fetch or update one wishlist |
| GET/POST | Poll latest scan / trigger scan now |
| POST | Cron target — scans all due wishlists |
| POST | Telegram webhook ingest |
| POST | MCP Streamable HTTP endpoint for external AI agents |
| POST | Create campground reservation watcher (Recreation.gov) |
| GET/PATCH | List/fetch/update reservation watchers |
| POST | Trigger reservation scan now |
| POST/GET | 3-model LLM comparison scan / performance summary |
| GET | Admin dashboard: LLM quality-vs-cost monitor |
Campground Reservation Watcher
Watch multiple Recreation.gov campgrounds for openings in your date window.
site_preference: "lakefront" scores lakefront sites higher when they free up via cancellation.
Scoring: availability + preference match + features (shade, pets, paved driveway) − price.
curl -X POST https://YOUR-DOMAIN.vercel.app/api/reservations \
-H 'Content-Type: application/json' \
-d '{"campground_ids":["233117","232665"],"date_window":"2026-10-09 to 2026-10-12","site_preference":"lakefront","cadence":"daily"}'Known limit: Recreation.gov's date-based availability endpoint currently returns 404 to anonymous
callers (API changed). The scanner uses their public site-metadata search (verified working:
loops, attributes, status, price). When date-level availability is re-exposed, wire it into
getCampgroundSites() — everything downstream already handles it. ReserveAmerica (NC state parks)
blocks anonymous API calls; add as a provider with cookies/session if needed later.
Multi-LLM Comparison ("quality vs cost control")
POST /api/compare races three model tiers on the same frugal-bot prompt:
Tier | Default model | Purpose |
|
| OpenRouter's own best-model routing |
|
| cheapest web-capable |
|
| mid-range web-capable |
A judge (anthropic/claude-opus-4.1) then ranks all three blind (order-shuffled), scoring 1–10.
Every run logs tokens/cost/score/wins to the perf store; GET /api/compare aggregates them and
/admin.html visualizes. All slugs are env-overridable weekly without code changes:
PARETO_MODEL, BUDGET_WEB_MODEL, MID_WEB_MODEL, JUDGE_MODEL.
Verified live run: mid_web (Sonar) scored 9 vs pareto (routed DeepSeek v4 flash) 8 vs budget (GPT-4.1-nano) 4–7, total cost ≈ $0.05/comparison.
Env vars (set in Vercel dashboard → Settings → Environment Variables)
OPENROUTER_API_KEY(required) — LLM providerFRUGAL_MODEL(optional, defaultstealth/ox-alpha) — any OpenRouter model slugKV_REST_API_URL,KV_REST_API_TOKEN(required for production persistence) — from a Vercel KV (Upstash) database attached in Vercel → StorageWISHLIST_TOKEN(optional) — shared secret for/api/wishlistsCRON_SECRET(optional but recommended) — protects/api/scan-allTELEGRAM_BOT_TOKEN,TELEGRAM_WEBHOOK_SECRET(optional) — Telegram ingestMCP_TOKEN(optional) — shared secret for/api/mcpPARETO_MODEL,BUDGET_WEB_MODEL,MID_WEB_MODEL,JUDGE_MODEL(optional) — LLM comparison tier overrides
MCP: Codex and Hermes setup
The deployed endpoint is Streamable HTTP (not SSE): https://YOUR-DOMAIN.vercel.app/api/mcp.
Set a long random MCP_TOKEN in Vercel for Preview and Production, then configure the same token as the x-mcp-token request header in each client. The MCP tools include submit_wishlist, get_wishlist, list_wishlists, update_wishlist, delete_wishlist, and trigger_scan.
Codex configuration (~/.codex/config.toml):
[mcp_servers.frugalfinder]
url = "https://YOUR-DOMAIN.vercel.app/api/mcp"
http_headers = { "x-mcp-token" = "YOUR_MCP_TOKEN" }Hermes configuration (use the equivalent server entry in its MCP settings):
{"mcpServers":{"frugalfinder":{"url":"https://YOUR-DOMAIN.vercel.app/api/mcp","headers":{"x-mcp-token":"YOUR_MCP_TOKEN"}}}}Use match_preference as exact, similar, or alternatives; notes holds first-class fit, finish, compatibility, and other constraints. Never commit the token—use the client's secret/environment-variable support when available.
Sharing paths
Add to Wishlist (bookmarklet)
Create a browser bookmark named Add to Wishlist with this URL:
javascript:(function(){var u=location.href;var t=document.title;prompt('Send to FrugalFinder? Add budget/use hints:',t+'\n'+u)&&fetch('https://frugalfinder.vercel.app/api/wishlists',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({item:t,source_url:u,budget:'see notes',use_case:'shared from '+u,cadence:'daily'})}).then(r=>r.json()).then(d=>alert('Added! id='+d.id))})()Click it on any product page to submit that listing as a wishlist entry.
Email (MVP note)
Not yet wired — MVP uses web UI + Telegram + bookmarklet. Email ingest is a natural v2 addition via an inbound-email webhook (e.g. Resend/Postmark → /api/wishlists).
Pricing tiers (recommended)
Tier | Cadence | Price rationale |
Free | daily | ~30 LLM calls/mo/item at $0 marginal cost on free stealth models ≈ negligible infra |
Power | hourly | $0.01/scan × ~720 scans/mo = $7.20/mo per item — price at $5/mo flat, margin comes from batching multiple wishlists into one hourly cron tick |
Pro (future) | hourly + priority queue + email digests | $12/mo |
The unit economics only work because the analyzer batches all due wishlists into a single cron pass (/api/scan-all), amortizing cold-start overhead.
Auth roadmap (post-MVP)
MVP now: no auth, single-user, guarded by optional shared secrets.
v1.1: magic-link email login (Auth.js or Clerk free tier) → per-user wishlists keyed by user ID.
v2: Stripe checkout for Power/Pro tiers; usage metering = count of scans per billing period.
Local dev
npm install
vercel dev # needs `vercel link` once
npm test # node:test unit testsMCP usage (for external agents like ChatGPT/Claude/Codex)
Connect an MCP-capable client to:
https://YOUR-DOMAIN.vercel.app/api/mcpHeaders: x-mcp-token: <MCP_TOKEN> if set.
Exposed tools:
submit_wishlist(item, use_case, budget, flexibility?, cadence?, source_url?)→ saves + immediate analysisget_wishlist(id)→ full record incl. latest analysis & scan historylist_wishlists()→ summary of all active wishliststrigger_scan(id)→ force an out-of-band frugal-bot scansubmit_reservation_watch(campground_ids, date_window?, site_preference?, min_features?, max_price?, cadence?, notes?)→ campground watcher + first scan (lakefront preference supported)list_reservations()→ all reservation watchers with last resultstrigger_reservation_scan(id)→ re-scan a reservation nowrun_model_comparison(item, use_case, budget, flexibility?)→ 3-tier LLM race + judge verdictget_model_performance()→ aggregated quality/cost stats per tier
Calling agents should treat it as submit + poll: submit once, then call get_wishlist on whatever cadence suits them (or wait for their own scheduler). The MCP spec has no push channel for arbitrary updates, so periodic polling is the standard pattern.
This server cannot be deployed
Maintenance
Related MCP Connectors
AI-powered product search, affiliate links, and price negotiation for e-commerce platforms
Personal-finance workspace for AI agents: accounts, spending, budgets, goals, and investments.
Directory of APIs, merchants, and tools AI agents can actually use.
Wishlists, favorites, and gift ideas — right from chat
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to save product URLs to a user's Wishfinity wishlist. When recommending products, the AI can generate a clickable link that saves items for later purchase or gifting.26 npm1MIT
- AlicenseAqualityFmaintenanceEnables AI agents to search products, lookup barcodes, and manage shopping carts and wishlists using free e-commerce APIs.8MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to manage shopping lists and items (create, edit, delete, mark as purchased) via integration with a backend API.8-
- AlicenseNot gradedqualityDmaintenanceImplements the iwant.fyi demand-side protocol, enabling AI agents to express structured purchase intent, receive matched supply from multiple sources, and report outcomes.Apache 2.0