Toast MCP Server
Click 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., "@Toast MCP Servershow me today's sales summary"
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.
Toast MCP Community Edition
An unofficial, read-only Model Context Protocol server for exploring Toast restaurant operations. It runs immediately with realistic synthetic data, provides a modern MCP App dashboard, and can use customer-supplied Toast credentials when they are available.
Current status: public beta. Demo behavior and official API contracts are verified. Live Toast behavior is not maintainer-verified because this project does not yet have Toast sandbox or production access. The server reports that boundary in every tool response instead of presenting contract coverage as live certification.
This repository is not affiliated with or endorsed by Toast, Inc. Toast is a trademark of its respective owner.
Why this edition exists
The original repository advertised dozens of write tools against API shapes that no longer matched Toast's published contracts. Community Edition 2 preserves that work in legacy/v1 and replaces the active server with a smaller, supportable foundation:
safe demo mode with no account or credentials required;
eight focused, read-only MCP tools;
privacy-minimized order output with guest and card data excluded;
an interactive MCP App operations overview;
current MCP server and app SDKs with structured tool output;
configurable Toast-provisioned access URLs and current machine-client authentication;
token reuse, endpoint pacing, retry handling, and
Retry-Aftersupport;a pinned catalog of all 17 current Toast-hosted public API families;
weekly automated drift checks against Toast's official OpenAPI files.
Related MCP server: FacturaHub MCP Server
Try it without Toast access
Requirements: Node.js 20 or newer.
git clone https://github.com/BusyBee3333/toast-mcp-2026-complete.git
cd toast-mcp-2026-complete
npm ci
npm run buildDemo mode is the default:
npm startTo connect a desktop MCP client, point it at the built entry point. Replace the path below with the absolute path to your clone:
{
"mcpServers": {
"toast-community": {
"command": "node",
"args": ["/absolute/path/to/toast-mcp-2026-complete/dist/src/main.js"],
"env": {
"TOAST_MCP_MODE": "demo"
}
}
}
}For local Streamable HTTP transport:
TOAST_MCP_TRANSPORT=http npm start
curl http://127.0.0.1:3000/healthThe MCP endpoint is http://127.0.0.1:3000/mcp. HTTP binds to loopback by default.
Tools
Tool | Purpose |
| States whether data is synthetic or live and what has actually been verified. |
| Lists all current Toast-hosted API families and their implementation status. |
| Lists the explicitly configured restaurant locations. |
| Returns privacy-minimized orders for an ISO 8601 range of up to 31 days. |
| Gets a privacy-minimized order summary by Toast GUID. |
| Searches resolved Menus V2 items, groups, names, PLUs, and SKUs. |
| Reads current Stock API inventory risks and preserves unknown status values. |
| Returns metrics and an interactive MCP App operations dashboard. |
Every successful tool returns both structuredContent and a text fallback. Each payload includes:
dataSource:demoorlive;verificationState:demo_verifiedorcontract_verified_live_unverified;generatedAt: an ISO 8601 timestamp.
Live mode: bring your own Toast access
Toast does not publish one universal production or sandbox hostname. Toast provisions an API Access URL and credentials for an approved integration or eligible customer account. Do not infer or hard-code an unofficial hostname.
export TOAST_MCP_MODE=live
export TOAST_API_ACCESS_URL="https://your-toast-provisioned-access-url"
export TOAST_CLIENT_ID="..."
export TOAST_CLIENT_SECRET="..."
export TOAST_RESTAURANT_GUIDS="location-guid-1,location-guid-2"
npm startThe server sends the current login request to:
{TOAST_API_ACCESS_URL}/authentication/v1/authentication/loginIt reads token.accessToken and token.expiresIn, shares one cached token across configured locations, refreshes it with single-flight protection, and sends Toast-Restaurant-External-ID on location-scoped calls.
Live HTTP mode is intentionally restricted to loopback until the project has an inbound MCP authorization design. Credentials are read from environment variables, are never returned to the model, and should be supplied through your own secret manager in production.
Toast access paths
Standard API access: self-service, production-only, read-only, and limited to eligible restaurant accounts. Standard access uses Menus V2, not Menus V3.
Partner or custom integration: Toast-provisioned scopes, sandbox access, certification, and production approval.
Analytics API access: separate credentials and eligibility. It is not assumed to share the operational API account.
Customers should run live mode inside infrastructure they control. The maintainer does not need to collect customer client secrets to demonstrate or support this project.
Official Toast API coverage
The catalog below was checked against Toast's official OpenAPI responses on August 28, 2026. Versions are info.version values, which are separate from URL versions.
API family | Base path | Spec | Community Edition status |
Authentication |
| 1.0.0 | Implemented infrastructure |
Orders |
| 2.9.5 | Implemented read subset |
Menus V2 |
| 2.4.1 | Implemented read subset |
Restaurants |
| 1.0.0 | Implemented read subset |
Stock |
| 1.0.0 | Implemented read subset |
Partners |
| 1.0.2 | Catalog only; scope-aware discovery is next |
Analytics |
| 1.0.0 | Catalog only; requires separate access |
Cash Management |
| 1.1.0 | Catalog only |
Configuration |
| 2.5.0 | Catalog only |
Credit Cards |
| 1.0.0 | Catalog only; partner write surface |
Device Details |
| 1.0.0 | Catalog only |
Kitchen |
| 1.0.2 | Catalog only |
Labor |
| 1.9.0 | Catalog only |
Menus V3 |
| 3.4.1 | Catalog only; ordering partners only |
Order Management Configuration |
| 1.0.1 | Catalog only |
Packaging |
| 1.0.0 | Catalog only |
Restaurant Availability |
| 1.0.1 | Catalog only |
catalog only means the official contract is tracked and drift-checked; it does not mean the API has an exposed MCP tool or has been tested with live Toast data.
Menus V3 is not a blanket replacement for Menus V2. Toast directs ordering partners to V3, while non-ordering and Standard API integrations should continue using V2. The server will only activate V3 for the appropriate integration type and granted scope.
Toast's gift card, loyalty, and tender specifications are outbound integration contracts hosted by the integrator. They are not Toast-hosted REST APIs that this MCP can simply call, so they are intentionally excluded from the 17-family count.
August 2026 update check
Toast's public developer update feed currently lists one August 2026 API change: on August 11, Analytics guest-payment results added cardLast4Digits, cardType, and paymentAccountReference. This server catalogs Analytics but does not expose guest-payment reporting because it requires separate access and includes sensitive payment-related data.
Other recently introduced surfaces are still included: Device Details became generally available July 7, and Kitchen item-fulfillment export was announced June 30. The manifest tracks the complete current reference surface rather than only entries dated in August.
Toast changed its compatibility policy on July 20, 2026 so adding enum values is no longer considered breaking. Live response normalization therefore preserves unknown fields and enum values instead of rejecting them.
Safety and data handling
All active tools are read-only and declare MCP read-only annotations.
Order summaries exclude guest identity, contact, delivery, and payment-card fields.
No customer or card data is stored by this server.
Synthetic demo records are visibly labeled and cannot be confused with a live restaurant.
Toast request IDs are retained in normalized errors for support, but credentials are not logged.
Only safe GET requests are retried; write APIs are not exposed.
Host and Origin validation protect local HTTP mode from basic DNS-rebinding and cross-origin requests.
Public live HTTP deployment is refused until inbound MCP authentication is configured.
See SECURITY.md for reporting and deployment guidance.
Contract and quality gates
npm run typecheck
npm test
npm run build
npm run contract:check
npm run package:checkThe pinned manifest is contracts/toast-api-manifest.json. A scheduled GitHub workflow downloads each official specification, checks its version and SHA-256 hash, and opens an actionable failure when Toast changes a contract. Hash changes are never accepted automatically.
The official specifications mix Swagger 2.0 with OpenAPI 3.0.x. Packaging is OpenAPI 3.0.3 and Stock is OpenAPI 3.0.1; the remainder are currently Swagger 2.0. Future code generation must normalize those dialects rather than assuming one schema format.
What still requires Toast access
No amount of public-contract work can replace these gates:
validate authentication, response shapes, pagination headers, and rate-limit headers in Toast sandbox;
confirm exact scopes returned for real connected restaurants;
certify Menus V3 behavior with an ordering-partner account;
validate Analytics job creation, polling, and seven-day report expiry with separate credentials;
exercise webhooks, signature verification, retry behavior, and large payload handling;
pass Toast's partner review, security review, certification, and production approval where applicable.
Until those gates are completed, the accurate release label is contract-verified and live-unverified.
Contributing
See CONTRIBUTING.md. The most valuable contribution is live validation from someone with legitimate Toast sandbox or production access who can share redacted behavior, never credentials or restaurant data.
When proposing a new tool, include the official operation, required scope, integration type, pagination behavior, rate limit, PII classification, demo fixture, tests, and read/write risk. Write tools will require a separate approval and audit design.
Primary sources
License
MIT. See LICENSE.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
Run your restaurant from an AI client: orders, menu, reports, refunds, payouts and staff.
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
Connect AI agents to 1000+ apps with managed authentication and tool-calling.
- SkilderOAuthai.skilder
One place to build, share, and govern the skills and tools your AI agents use at work.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage KiotViet retail and F\&B operations including products, orders, customers, invoices, and inventory through the Public API. Features 36 integrated tools with automatic token refresh, middleware chain support, and configurable presets for different access levels.3-
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to manage business operations including invoicing, WooCommerce syncing, expense tracking, POS, inventory, and team management through natural language.482MIT

CraveUp MCP Serverofficial
AlicenseAqualityBmaintenanceEnables AI agents to onboard restaurant brands and manage Crave menus, storefronts, and mobile releases via natural language.3815MIT- FlicenseBqualityBmaintenanceEnables AI assistants to manage Gerent365 restaurant and business operations via natural language, including employees, schedules, payroll, tips, time tracking, customers, products, reservations, and reports.531-
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/BusyBee3333/toast-mcp-2026-complete'
If you have feedback or need assistance with the MCP directory API, please join our Discord server