forkable-mcp
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., "@forkable-mcpwhat's for lunch this week?"
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.
forkable-mcp
Order and manage your Forkable lunches from Claude, Codex, Cursor, or another MCP client. You can see your week, browse menus, get recommendations, change meals, and check where lunch is without opening the Forkable app.
This is an unofficial project and is not affiliated with Forkable. It uses your Forkable web session and an undocumented API that may change.
Features
See upcoming deliveries and the meals already selected
Track courier ETAs, arrival times, and office access notes
Browse and search menus
Get Forkable's meal recommendations
Add, replace, remove, and confirm meals
Rate meals from 1–5 and leave written feedback
Use it from any MCP client that can launch a stdio server
Related MCP server: Uber Eats MCP Server
Quick start
You need Bun or Node.
First, log in to Forkable in Chrome and import that session:
bunx --bun forkable-mcp@latest --auth --chrome # Node: npx forkable-mcp@latest --auth --chromeThen add it to your MCP client:
Client | Command or configuration |
Claude Code |
|
Codex |
|
Claude Desktop or Cursor | Add the JSON below under |
VS Code | Add the JSON below under |
{
"mcpServers": {
"forkable": {
"command": "bunx",
"args": ["--bun", "forkable-mcp@latest"]
}
}
}Restart or reconnect your client, then ask something like:
What's for lunch this week?
Skills
Three agent skills ship with the server:
forkablecontains the shared instructions for meals, deliveries, and tool useforkable-fridayadds a week-ahead planning routine on top offorkableforkable-setupcovers installation and authentication
Install them with:
npx skills add colinds/forkable-mcp
npx skills add colinds/forkable-mcp --list # See what's included firstThe source files are in skills/.
Tools
Tool | What it does |
| Shows upcoming deliveries and selected meals |
| Shows courier status, ETA, arrival time, tracking, and access notes |
| Lists menus and item options for a delivery |
| Searches a delivery's menus |
| Returns Forkable's meal recommendations |
| Shows the signed-in Forkable user |
| Adds or replaces a meal |
| Sets the same meal on several deliveries |
| Removes a meal |
| Rates a meal or edits its score and text feedback |
| Confirms or unconfirms a delivery |
Forkable still decides whether a change is allowed, including deadlines, restaurant capacity, and billing rules.
To skip a delivery, use list_deliveries and remove each selected owned meal with remove_meal.
This removes those meals; it does not change your auto-order settings. Compare selected meals with
recommend_meals when choosing alternatives.
Meal ratings
List the delivery first, supplying from and to for past meals. Each owned meal includes rating:
null means Forkable has not made a rating available, while a rating with level: null is unrated.
Use rate_meal with the delivery ID, the meal's pieceId, and a level from 1–5. It previews first;
call again with the same arguments and its confirmToken to submit. The search starts 14 days ago
by default; pass both from and to to limit the lookup to an older day or week.
Optional reasons, comment, forGuest, and allowRatingFollowUps edit the feedback. Omitted fields
keep their current values; an empty comment or reason array clears it. Levels 4–5 accept compliment
codes, while 1–3 accept issue codes listed in the tool schema. Known incompatible stored reasons are
removed, unknown server codes are preserved, and duplicates are ignored. Score changes show both
the old and new score in the preview. Marking a meal as a guest meal excludes its rating from future
suggestions. Follow-up preferences apply to this rating without changing your account settings.
If Forkable has not reported a follow-up preference, omitting it lets Forkable apply its default,
which may allow its team to contact you about your feedback. Set allowRatingFollowUps: false
to opt out for the rating.
Existing attachments are kept; photo editing and buffet ratings are not supported.
Authentication
There is no API key. The server reuses a Forkable web session and stores it in
~/.forkable-mcp/session.json.
Import from a browser
Log in at forkable.com, then run:
bunx --bun forkable-mcp@latest --auth --chrome # Node: npx forkable-mcp@latest --auth --chromeChrome and Edge profiles are found automatically on macOS, Linux, and Windows. Browser import is best-effort because browser storage and operating-system security rules vary.
On macOS, Keychain may ask for permission once per browser profile. Limit the scan if you know which profile you use:
bunx --bun forkable-mcp@latest --auth --chrome --profile "Profile 1"Arc is supported on macOS:
bunx --bun forkable-mcp@latest --auth --chrome --browser arcBrave and Chromium are also supported. On Linux or Windows, you may need to pass a profile directory
or cookie database with --profile.
Email and password
bunx --bun forkable-mcp@latest --auth --login --email you@example.com # Node: npx forkable-mcp@latest --auth --login --email you@example.comThe command asks for your password without showing it. Password-based sessions can sign in again after they expire. SSO-only accounts need a browser or cookie import instead.
For non-interactive use, send the password on standard input with --password-stdin, or set
FORKABLE_EMAIL and FORKABLE_PASSWORD.
Copy as cURL
If browser import cannot find your session, copy an authenticated Forkable GraphQL request from your browser's developer tools:
Open Forkable, then open Developer Tools and select Network.
Reload the page and filter for
graphql.Right-click a request to
/api/v2/graphqland choose Copy as cURL.Pipe the copied command into the auth command:
pbpaste | bunx --bun forkable-mcp@latest --auth # Node: pbpaste | npx forkable-mcp@latest --authOnly the Cookie header is imported. You can also save the copied command and pass it with
--file ./forkable.curl, or set FORKABLE_COOKIE to the full Cookie header.
Cookie-based sessions cannot refresh themselves. Import the cookie again when it expires.
Configuration
All settings are optional. Bun reads .env automatically; with Node, set them in the MCP server's
environment.
Variable | What it does |
| Email for non-interactive login and session refresh |
| Password used with |
| MFA code for password login |
| Full Forkable Cookie header for headless or SSO authentication |
| Sets the initial CSRF token; normally unnecessary |
| Local per-meal spending limit in dollars |
| Changes where the session is stored |
FORKABLE_MAX_TOTAL is a local limit, not a Forkable allowance or billing rule. Billing information
is shown as Forkable reports it.
From source
bun install
bun run auth --chrome
bun run startDevelopment
bun test
bun run test:tz
bun run check
bun run smokeLicense
MIT © Colin D'Souza
This server cannot be deployed
Maintenance
Related MCP Connectors
Recipes MCP — wraps TheMealDB API (free tier, no auth)
- mcpOAuthcom.zomato
An MCP server that exposes functionalities to use Zomato's services.
Search multi-merchant supply, checkout, and track orders via MCP.
- SpoonjoyOAuthapp.spoonjoy
Your personal recipe kitchen: save, fork, and cook recipes, build cookbooks, and shopping lists.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server and app that enables users to browse restaurants, view menus, manage shopping carts, and place food orders with live status tracking. It serves as a reference implementation for MCP Apps SDK patterns like tool visibility, lifecycle hooks, and structured content.-
- FlicenseNot gradedqualityDmaintenanceEnables interaction with Uber Eats for food ordering and delivery management through natural language, acting as a proof-of-concept MCP integration.-
- FlicenseNot gradedqualityBmaintenanceEnables coffee shop order management via MCP, including menu lookup, order creation, and status tracking.-
- AlicenseNot gradedqualityCmaintenanceProvides programmatic access to Grubhub's food delivery platform, enabling restaurant search, menu browsing, cart management, order placement, and delivery tracking through MCP tools.MIT