CraveUp MCP Server
OfficialClick 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., "@CraveUp MCP Serveronboard Demo Bistro brand and import menu"
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.
Crave Up MCP Server
A Model Context Protocol (MCP) server that lets AI agents onboard restaurant brands and manage Crave menus, storefronts, and mobile releases — entirely from natural language in chat
Quick Start | Available Tools | Authentication | Documentation
Overview
This MCP server provides Crave platform integration for Claude Code, Cursor, and other MCP-compatible clients. It covers the full merchant lifecycle: creating an organization, wiring a repo, importing menus, configuring locations, going live with subscriptions and payments, managing discounts, and dispatching guarded Expo/EAS mobile releases.
Key Features
37 Tools in 9 Categories — browser auth, onboarding, go-live, location settings, menus, discounts, readiness checks, mobile releases, sandbox data
Natural-Language Onboarding — "hook up this repo for Demo Bistro" → login → create org → wire
.env→ import menu → run iOSIdempotent Writes — menu imports, discount creation, and sandbox seeding are safe to re-run
Guarded Mobile Releases — internal TestFlight only; paid EAS work requires a scoped Expo token plus explicit confirmation, and public App Store release remains human-controlled
TypeScript — full type safety with Zod validation
Tested — Vitest suite (63 tests) covering tools, clients, config, auth, and readiness logic
Note: this is a local MCP server. It runs as a stdio subprocess on the developer's machine. An agent can start secure Crave Up browser sign-in/sign-up through
start_crave_auth; the resulting session is shared with the CLI.
After rebuilding
packages/mcp/dist, restart the MCP server in your client (or reload the window) so new tools appear.
Related MCP server: 402 MCP Restaurant Finder
Quick Start
Installation
# From npm (published package)
npx -y @craveup/mcp
# Or from the monorepo
pnpm --filter @craveup/mcp build # compiles to dist/Configuration
Claude Code. Register separate sandbox and production processes at user scope so the environment boundary remains visible in every tool call. This is a local stdio server, so there is no hosted MCP URL:
claude mcp add -s user craveup-sandbox \
-e CRAVEUP_ENVIRONMENT=sandbox \
-- npx -y @craveup/mcp
claude mcp add -s user craveup-production \
-e CRAVEUP_ENVIRONMENT=production \
-- npx -y @craveup/mcpRun /mcp in Claude Code to inspect the registration. Start a new Claude Code
session if the current session does not refresh its tool inventory.
Do not switch an already-running server between environments. Use the
craveup-sandbox tools while building and testing, then explicitly select the
craveup-production tools when preparing to launch. Each process has its own
dashboard host, API-key prefix, Clerk configuration, and stored browser session.
Option A — Full NL development bootstrap (recommended for new brands). Register the MCP server without an API key. No repo checkout is needed:
{
"mcpServers": {
"craveup": {
"command": "npx",
"args": ["-y", "@craveup/mcp"],
"env": {
"CRAVEUP_ENVIRONMENT": "sandbox"
}
}
}
}The agent calls start_crave_auth, opens the returned Crave Up URL, and then calls
complete_crave_auth. The user can sign in or create a free account in that browser flow. The
server stores the resulting shared CLI/MCP session in the macOS keychain (or
~/.config/craveup/credentials.json). Alternatively set CRAVEUP_ACCESS_TOKEN in the MCP env.
To exercise tools that are on main but not yet published, swap the command for the local build:
"command": "node", "args": ["/path/to/craveup-turborepo/packages/mcp/dist/cli.js"].
Option B — Menu-only (existing location + API key). Create a merchant API key in Crave Business Manager → Settings → Developer → API Keys:
{
"mcpServers": {
"craveup": {
"command": "npx",
"args": ["-y", "@craveup/mcp"],
"env": {
"CRAVEUP_ENVIRONMENT": "sandbox",
"CRAVEUP_API_KEY": "crv_test_…",
"CRAVEUP_LOCATION_ID": "<default location id>"
}
}
}
}CRAVEUP_ENVIRONMENT is required. The environment selects all dashboard, API, and Clerk hosts
together. CRAVEUP_LOCATION_ID is optional; every menu tool also accepts an explicit locationId.
Mobile releases. To dispatch mobile release workflows, also set a scoped Expo robot-user token in the MCP env:
{
"env": {
"EXPO_TOKEN": "<scoped Expo robot-user token>"
}
}Example chat flow
"This demo-bistro repo — hook it up to Crave for Demo Bistro. Login if you need to, create the org, import the menu, and run it on the iOS simulator."
Agent sequence:
whoami— confirm the shared sessionIf needed:
start_crave_auth→ open its URL →complete_crave_authcreate_organization({ name: "Demo Bistro", mintApiKey: true })connect_project({ projectPath: "…/demo-bistro", apiKey, locationId })import_menu(…)from the restaurant sourceRun the storefront or iOS app locally
Place sandbox test orders immediately; no merchant Stripe Connect account or subscription is required
Only when the merchant chooses to launch: switch to production and complete subscription and payment onboarding
Available Tools
Entities
CRUD-style operations are available for the following entity types:
Entity | Create | Get | Update | Delete | List |
Organization | ✅ | - | - | - | - |
Location | ✅ | - | ✅ | ✅ | ✅ |
Store Settings | - | ✅ | ✅ | - | - |
Menu | ✅ | - | ✅ | - | ✅ |
Product | ✅¹ | ✅ | ✅ | ✅ | - |
Discount | ✅ | - | - | - | ✅ |
Order | - | - | - | - | ✅ |
Customer | - | - | - | - | ✅ |
Subscription | ✅² | - | - | - | ✅ |
Mobile Release | ✅³ | ✅ | - | - | - |
¹ Products are created in bulk via import_menu. ² start_subscription_checkout opens a Stripe Checkout session; plans themselves are read-only. ³ start_mobile_release dispatches an EAS workflow run; deletion/cancellation stays in EAS.
Checks & Guides
Check | Tool Name | Description |
Go-live Status |
| The dashboard's 6 go-live steps with completion state + next actions |
Storefront Readiness |
| Sandbox: menu, ordering, and platform test checkout. Production: menu, ordering, and merchant Stripe |
Mobile Release Readiness |
| Read-only Expo/EAS preflight for internal releases |
Onboarding Flow |
| NL checklist: login → create org → connect repo → import menu → run |
Session |
| Verify the |
Integration Guide |
| Crave.js implementation guidance: storefront, menu display, checkout |
Tool Reference
Tool | Description |
| Return a hosted Crave Up sign-in/sign-up URL for the agent to open |
| Finish the loopback callback and persist the shared CLI/MCP session |
| Abandon a pending sign-in and release its loopback listener |
Tool | Description |
| NL checklist: login → create org → connect repo → import menu → run |
| Verify the |
| Create merchant + location; |
| Write |
Tool | Description |
| The dashboard's 6 go-live steps with completion state + next actions |
| Create a location ( |
| Soft-archive a location (frees slug; hides from dashboard) |
| Dashboard locations-stats for the merchant |
| Active orders for a location |
| Customers page for a location |
| Set the street address; the server geocodes (no lat/lng needed) |
| Enable pickup / table service / delivery / room service |
| Production-only plans with price, interval, and trial info |
| Production-only Stripe Checkout URL for the user to pay in the browser |
Tool | Description |
| Read store hours, scheduled-order flag, tax, takeout |
| Set hours ( |
| Toggle order-ahead when closed |
| Enable/disable takeout pickup |
| One-shot fix for "Restaurant is closed. Scheduled orders are not allowed." |
Tool | Description |
| Idempotent full menu import; forces |
| Explicitly activate/deactivate a menu (use when |
| Read back menus exactly as the storefront API serves them |
| Fetch one product with its modifier group ids |
| Partial edits: name, description, price, availability |
| Sold-out toggles |
| Remove a product (category references cleaned up) |
| Implementation guidance: storefront setup, menu display, checkout, import format |
Tool | Description |
| List location promo codes and their current configuration |
| Idempotently create an order-level fixed or percentage promo code (percentage capped at 100) |
Tool | Description |
| Environment-aware gate: platform test checkout in sandbox; merchant Stripe |
Run craveup apps configure in the Expo/React Native project and commit the generated workflows before using these tools. EAS builds consume plan minutes.
Tool | Description |
| Read-only local preflight for EAS project identity, workflow, credentials, and internal target |
| Dispatch the fixed internal TestFlight workflow after exact confirmation |
| Read the EAS workflow run, build jobs, and submission jobs |
start_mobile_release cannot publish publicly. iOS always goes to internal TestFlight first; public App Store review remains an explicit App Store Connect action. Use craveup apps publish play-internal for Android; the CLI blocks submission unless the local EAS submit profile targets Google Play's internal track.
Tool | Description |
| Idempotently create customers, orders, ratings, and funnel events for the dev test organization. Requires |
Authentication
This server authenticates to Crave with a merchant API key (menu, discount, and readiness tools), a shared CLI/MCP browser session (organization, onboarding, go-live, and location-settings tools), and optionally an Expo token (mobile release tools). The agent starts browser authentication with start_crave_auth; the user can sign in or create an account on the Crave Up-hosted page.
Important: Sandbox vs production
Environment | Dashboard | API | Clerk issuer | API key |
|
|
|
|
|
|
|
|
|
|
Set CRAVEUP_ENVIRONMENT explicitly in the MCP server configuration. The server derives the whole
profile from that value and rejects a test/live key or endpoint mismatch before sending a request.
Sandbox and production sessions are stored separately.
For daily development, register two named MCP servers instead of mutating one server's environment in-process:
craveup-sandbox: build the storefront, configure menus and locations, and place test orders through Crave's platform Stripe test account without merchant Connect onboarding or a subscription.craveup-production: use the live dashboard and live API-key namespace. Dashboard and setup tools remain usable before onboarding is complete, but accepting real payments still requires the subscription, Stripe Connect KYC, and banking steps shown byget_onboarding_status.
Browser authentication is explicit: call start_crave_auth, open the returned Clerk authorization
URL, then call complete_crave_auth. Normal MCP calls reuse that persisted session and do not open a
browser again.
Test Setup (recommended for first run)
Sign in to Crave Business Manager → Settings → Developer → API Keys
Create a key for the location you want to work with — copy the
crv_test_…valueSet
CRAVEUP_ENVIRONMENT=sandbox,CRAVEUP_API_KEY, and optionallyCRAVEUP_LOCATION_IDin the MCP server envFor session-authenticated tools, use
start_crave_authandcomplete_crave_auth, or runcraveup login; both paths use the same secure local session
Live Setup
Start a separate MCP process with
CRAVEUP_ENVIRONMENT=production; do not reuse sandbox credentialsOpen the production dashboard and continue configuring the organization even if the commercial checklist is incomplete
When the business is ready to accept real payments, complete the go-live checklist —
get_onboarding_statusshows the six steps and what's missingVerify payments with
check_storefront_readiness— production requires merchant StripechargesEnabledMint a
crv_live_…key in Business Manager
Once you have credentials
CRAVEUP_ENVIRONMENT=sandbox # required: sandbox or production
CRAVEUP_API_KEY=crv_test_… # prefix must match the environment
CRAVEUP_LOCATION_ID=<location id> # optional default; every tool also accepts locationId
CRAVEUP_ACCESS_TOKEN=<session token> # optional alternative to the keychain session
EXPO_TOKEN=<scoped robot-user token> # only for mobile release toolsEndpoint overrides are normally unnecessary. Sandbox loopback URLs are allowed for local
development. Other custom deployments require CRAVEUP_ALLOW_CUSTOM_ENDPOINTS=true, and the
environment remains visible in whoami and mutating responses.
Credential safety
Do not paste Apple passwords, 2FA codes, App Store Connect keys, or Google service-account JSON into chat. Bootstrap interactive credentials in a visible terminal; EAS stores the reusable submission credentials. EXPO_TOKEN must be a scoped Expo robot-user token, never a personal account token.
Common pitfalls
New tools not appearing. After rebuilding
packages/mcp/dist, restart the MCP server in your client (or reload the window) — clients cache the tool list per process.Keys are location-scoped. The API rejects requests for locations the key cannot access; use the key minted for the location you're targeting, or pass an explicit
locationId.Session tools failing while key tools work. The two auth modes are independent — a valid
CRAVEUP_API_KEYdoes not log you in. Callstart_crave_auth, open the returned URL, then callcomplete_crave_auth."Restaurant is closed. Scheduled orders are not allowed." Not an auth problem: run
open_location_for_orders({ locationId })for the one-shot fix, then retry.Sandbox seeding refuses to run.
seed_sandbox_analyticsis guarded by design: it requiresCRAVEUP_ENVIRONMENT=sandbox; there is no production override.
Development
Building
pnpm --filter @craveup/mcp build # compile to dist/Testing
pnpm --filter @craveup/mcp test # vitest — 58 tests across 5 filesProject Structure
src/
├── clients/ # Crave + Expo/EAS API clients
├── tools/ # MCP tool definitions (9 categories)
├── handlers/ # Business logic (readiness, onboarding, guides)
├── helpers/ # Zod schemas, session, env config
├── cli.ts # stdio entry point (craveup-mcp bin)
└── index.ts # Server assembly + tool registration
tests/
└── unit/ # Vitest suites (63 tests)
docs/
├── ARCHITECTURE.md # Layers, auth modes & design decisions
└── TESTING.md # Testing patterns & conventionsDocumentation
Document | Description |
Version history and all changes | |
Layers, authentication modes, and design decisions | |
Testing strategy, in-memory MCP transport pattern, conventions | |
Hosted Crave Up MCP server guide + Crave.js integration docs (also served at runtime via | |
MCP specification |
Error Handling
Tools return structured MCP error results (isError: true) rather than throwing: missing or invalid auth reports which credential is needed (session vs API key vs EXPO_TOKEN), and the API rejects keys that cannot access the requested location. Paid EAS dispatch requires an exact confirmation phrase, location deletion is a recoverable soft-archive, and sandbox seeding refuses to run unless all dev-environment guards are set.
Contributing
Note: development happens in the private Crave Up monorepo; the public craveup/craveup-mcp repo is a read-only mirror synced automatically from
packages/mcp. Bug reports and feature requests are welcome as issues on the mirror; direct pushes and PRs there will be overwritten by the next sync.
Tool naming convention
get_*/list_*/check_*— read-onlycreate_*/update_*/set_*/delete_*— writes, idempotent where possiblestart_*— kicks off an external process (checkout, EAS workflow) and returns a handle
Add tests in tests/unit/ for every new tool; pnpm --filter @craveup/mcp test must pass before publishing (prepublishOnly runs build + tests).
License
MIT — see LICENSE.
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.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables any AI agent to discover, query, and order from a restaurant's storefront via MCP tools. It handles menu lookup, modifier validation, and enforces a mandatory confirmation gate before payment, replacing the human-operated phone line.
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to browse restaurants and menus for free, and place orders with USDC payment via x402.
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage restaurant operations by integrating with Toast POS, including orders, menus, employees, payments, inventory, and reporting through 50+ tools and 18 React apps.8

Canuckeats MCPofficial
FlicenseNot gradedqualityDmaintenanceEnables AI agents to browse menus and place real food delivery orders from UberEats and DoorDash across 89 Canadian cities.1
Related MCP Connectors
AI-native restaurant discovery: verified/menu-indexed/discovered tiers + signed allergy-safety data.
Create and manage AI agents that collaborate and solve problems through natural language interacti…
An AI concierge that turns static forms into adaptive AI conversations. From any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/craveup/craveup-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server