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.
CraveUp 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
34 Tools in 8 Categories — 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 (53 tests) covering tools, clients, config, and readiness logic
Note: this is a local MCP server. It runs as a stdio subprocess on the developer's machine and authenticates to Crave with either your
craveup loginCLI session or a merchant API key. See Authentication.
After rebuilding
packages/mcp/dist, restart the MCP server in your client (or reload the window) so new tools appear.
Related MCP server: agent-storefront
Quick Start
Installation
# From npm (published package)
npx -y @craveup/mcp
# Or from the monorepo
pnpm --filter @craveup/mcp build # compiles to dist/Configuration
Option A — Full NL onboarding (recommended for new brands). Run craveup login once in a terminal, then register the MCP server without an API key:
{
"mcpServers": {
"craveup": {
"command": "node",
"args": ["/path/to/craveup-turborepo/packages/mcp/dist/cli.js"]
}
}
}The server reads your CLI session from the macOS keychain (or ~/.config/craveup/credentials.json). Alternatively set CRAVEUP_ACCESS_TOKEN in the MCP env.
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_API_KEY": "crv_test_…",
"CRAVEUP_LOCATION_ID": "<default location id>",
"CRAVEUP_BASE_URL": "https://api.craveup.com"
}
}
}
}CRAVEUP_LOCATION_ID and CRAVEUP_BASE_URL are 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 session (or ask user to runcraveup login)create_organization({ name: "Demo Bistro", mintApiKey: true })connect_project({ projectPath: "…/demo-bistro", apiKey, locationId })import_menu(…)frome2e/demo-menu.jsoncheck_storefront_readiness— menu + ordering + paymentsIf not ready →
open_location_for_ordersand/orcraveup integrations add stripeRe-run readiness until
ready: truenpx expo start --ios
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 |
| Go/no-go gate: menu, ordering session, 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 |
| 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 |
| Plans with price, interval, and trial info |
| 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 |
| Hybrid wizard gate: menu, ordering session, 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 CLI session from craveup login (onboarding, go-live, and location-settings tools), and optionally an Expo token (mobile release tools). No OAuth app registration or redirect URIs are needed — keys are minted directly in Crave Business Manager.
Important: Test vs Live
Mode | When to use | API key prefix | Setup difficulty |
Test | Development, demos, integration tests |
| Easy — mint a key and go |
Live | Real storefront orders with real payments |
| Requires a live location: go-live checklist complete, subscription active, Stripe |
The server validates the prefix at startup — anything not starting with crv_ is rejected before a single request is made. Point CRAVEUP_BASE_URL at a local API (e.g. http://localhost:8000) to develop fully offline from production.
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_API_KEY(and optionallyCRAVEUP_LOCATION_ID) in the MCP server envFor session-authenticated tools (onboarding, go-live, location settings), run
craveup loginonce in a terminal — the server reads the session from the macOS keychain or~/.config/craveup/credentials.json
Live Setup
Complete the go-live checklist —
get_onboarding_statusshows the six steps and what's missingVerify payments with
check_storefront_readiness— it gates on menu, ordering session, and StripechargesEnabledMint a
crv_live_…key in Business Manager and swap it into the MCP env
Once you have credentials
CRAVEUP_API_KEY=crv_test_… # merchant API key (test or live)
CRAVEUP_LOCATION_ID=<location id> # optional default; every tool also accepts locationId
CRAVEUP_BASE_URL=https://api.craveup.com # optional; defaults to production API
CRAVEUP_ACCESS_TOKEN=<session token> # optional alternative to the keychain session
EXPO_TOKEN=<scoped robot-user token> # only for mobile release toolsCredential 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. Runcraveup loginin a terminal (the MCP process cannot open a browser)."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_SANDBOX_MODE=trueand a non-productionCRAVEUP_ADMIN_BASE_URL— there is no override for production.
Development
Building
pnpm --filter @craveup/mcp build # compile to dist/Testing
pnpm --filter @craveup/mcp test # vitest — 53 tests across 5 filesProject Structure
src/
├── clients/ # Crave + Expo/EAS API clients
├── tools/ # MCP tool definitions (7 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 (53 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 CraveUp 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 CraveUp 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.
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