My Hot Lunchbox school lunch ordering for Claude β calendar, cart, orders, payments
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
MCP server for My Hot Lunchbox β read the school lunch calendar, manage students, place and change orders, and track deliveries and payments on a parent account.
Developed and maintained by AI (Claude Code). Use at your own discretion.
Or as a Claude Code plugin:
That is the whole setup. The server performs a real server-side sign-in against
ordernow.myhotlunchbox.com (OAuth2 password grant) and renews the session with
the refresh token it receives β no browser extension, no signed-in tab, no
captured cookie. Nothing is written to disk.
MYHOTLUNCHBOX_BASE_URL overrides the app origin if it ever moves.
The server boots without credentials so a host's install-time tools/list probe
still works; the configuration error surfaces on the first tool call.
35 tools, all prefixed mhlb_. All 20 read tools are verified live against a real parent account (node scripts/verify-reads.mjs); the 14 write tools are not β see below.
Account β mhlb_whoami, mhlb_session_reset
Health β mhlb_healthcheck (is this connector working? reports whether the credential resolved, whether My Hot Lunchbox accepted it, and what to fix β unlike mhlb_whoami, which throws instead of answering)
Students β mhlb_list_students, mhlb_get_student_form,
mhlb_new_student_form, mhlb_create_student, mhlb_update_student,
mhlb_delete_student
Calendar β mhlb_get_calendar, mhlb_get_day
Ordering β mhlb_get_cart, mhlb_get_cart_tabs, mhlb_get_menu,
mhlb_get_order_form, mhlb_get_order, mhlb_create_order,
mhlb_update_order, mhlb_delete_order
Billing β mhlb_list_transactions, mhlb_get_transaction,
mhlb_list_subscriptions, mhlb_get_subscription_settings,
mhlb_set_subscription_enabled, mhlb_unsubscribe_order,
mhlb_list_gift_cards, mhlb_apply_gift_card, mhlb_get_coupon,
mhlb_apply_coupon, mhlb_remove_coupon
Checkout β mhlb_init_checkout, mhlb_checkout
Reports β mhlb_print_calendar, mhlb_print_orders,
mhlb_print_transaction. These return real PDFs; each writes the file and
returns its path, or the bytes inline with inline: true. Set
MYHOTLUNCHBOX_OUTPUT_DIR to choose where they land (defaults to the working
directory); existing files are never overwritten.
Every mutating tool takes confirm. Without confirm: true it makes no
network call and returns a dry-run preview of exactly what it would send.
mhlb_checkout charges a real payment method. The server prices the charge from
orderIds, so nothing client-side can bind the amount β there is no total in the
request to check against. expectedTotal is therefore attribution, not a
guard: you state what you expected, and it is recorded in the dry run and in
the result so an unexpected charge is traceable to the call that made it. What
the tool does refuse outright is paying a non-zero total with no orderIds.
npm run capture:writes runs every mutating tool against a local proxy that
forwards reads to the real service but answers writes itself, so the payloads
are built from genuine server models and nothing happens upstream. It also
proves all 13 refuse to send anything without confirm: true.
What that established, and corrected: mhlb_delete_order and
mhlb_unsubscribe_order take {orderId, eventDate, studentId, isRepeated, isSubscribed} β not the order model β and checkout takes
{orderIds, checkoutType, couponCode, giftCardCode, schoolDonations}.
What is still unverified is whether the server accepts these bodies. Shape
is not acceptance; only a real write shows that, and none has been made. Inspect
the dry-run preview before confirming, and re-read afterwards β a 200 is not
proof a write persisted.
Two limits on mhlb_checkout specifically:
idempotencyKey rather than a fresh call β
that is what stops a retry becoming a second charge.There is no "add item X" call. Fetch the model, edit it, send it back whole:
mhlb_get_menu β what is orderable for a student on a datemhlb_get_order_form β the order model to fill inmhlb_create_order β send it back (with confirm: true)mhlb_init_checkout β mhlb_checkout β price, then payFields omitted from the payload are cleared, not preserved.
skills/myhotlunchbox covers the same account from a shell with curl β no MCP
process needed. Useful in scripts, or on a machine where this server is not
installed.
/deliveryInfo/* and /calendar/viewMatchedVendors look parent-facing in the
compiled client but return 403 for a parent account β they belong to the
school/vendor dashboards. No tool wraps them.403, which the client reports as a role
mismatch rather than a broken session.docs/MYHOTLUNCHBOX-API.md records how the API was mapped and exactly what is
verified. docs/api-surface.txt is the full 359-endpoint extraction.MIT
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/myhotlunchbox-mcp)<a href="https://allmcps.com/mcp/myhotlunchbox-mcp"><img src="https://allmcps.com/api/badge/myhotlunchbox-mcp?style=directory" alt="Myhotlunchbox MCP on AllMCPs" /></a>