Ordio MCP
MCP server for the Ordio restaurant operations platform, enabling AI assistants to manage inventory, orders, recipes, team, shifts, and reports.
README
Ordio MCP
Ordio MCP — Model Context Protocol server exposing Ordio data and actions to AI assistants.
Ordio MCP turns the Ordio restaurant operations platform into a set of structured tools, resources, and prompts that any AI assistant can use. Ask Claude (or any MCP-capable agent) to check inventory, draft a purchase order, schedule a shift, or run a variance report — and it can do so safely, scoped to your organization.
What is MCP?
The Model Context Protocol is an open standard for connecting AI assistants to external systems. An MCP server exposes capabilities (tools, resources, prompts) over a simple JSON-RPC interface; an MCP client (such as Claude Desktop, Claude Code, or Windsurf) connects to the server and lets the model call those capabilities on the user's behalf.
Highlights
- ~145 tools spanning inventory, recipes, vendors, orders, invoices, tasks, team, shifts, alerts, kitchen board, AI extraction, reports, and analytics
- 5 organization resources for at-a-glance context (profile, inventory summary, active alerts, team summary, daily metrics)
- 6 prompt workflows (inventory audit, purchase-order workflow, shift scheduling, end-of-day closing, recipe costing, new menu-item setup)
- stdio and SSE transports
- Strict per-request org scoping and Bearer-token auth against the Ordio REST API
- Two tool sources, selectable at startup: the hand-written tool modules (default) or the unified assistant catalog proxy (
ORDIO_CATALOG_PROXY=1), which routes every call through the Ordio API's chat/voice gateway so the MCP and in-app assistant surfaces can never drift — see Tool source
Available tools
Tools are grouped by domain. The full list lives in src/tools/.
| Group | Count | Examples |
|---|---|---|
| Inventory | 6 | list_inventory, create_inventory_item, batch_update_inventory |
| Recipes | 5 | list_recipes, create_recipe, update_recipe |
| Recipe batches | 5 | list_recipe_batches, create_recipe_batch |
| Vendors | 5 | list_vendors, create_vendor |
| Categories | 5 | list_categories, create_category |
| Purchase orders | 5 | list_orders, create_order |
| Invoices | 5 | list_invoices, create_invoice |
| Tasks | 5 | list_tasks, create_task |
| Team | 9 | list_team_members, list_departments, create_department |
| Shifts | 5 | list_shifts, create_shift |
| Shift requests | 5 | list_shift_requests, create_shift_request |
| Alerts | 9 | list_alerts, dismiss_alert, create_alert_configuration |
| Menu items | 5 | list_menu_items, create_menu_item |
| Kitchen board | 14 | list_kitchen_orders, bump_order, list_routing_rules |
| Count sessions | 5 | list_count_sessions, create_count_session |
| Storage locations | 5 | list_storage_locations, create_storage_location |
| Units | 5 | list_units, create_unit |
| Sales & labor | 8 | list_sales_data, list_labor_daily_summary, list_timesheets |
| Activity | 3 | list_activity, log_activity |
| Settings | 4 | get_settings, upsert_setting |
| Reports | 3 | get_variance_report, get_ap_aging_report, get_cost_analysis |
| Temperature logs | 2 | list_temperature_logs, create_temperature_log |
| Equipment | 4 | list_equipment, create_equipment |
| AI & automation | 11 | ai_process_invoice, ai_extract_recipes, ai_generate_recipe |
| Search | 1 | semantic_search |
| Analytics | 6 | inventory_health_dashboard, food_cost_analysis, daily_operations_briefing |
Resources
| URI | Description |
|---|---|
ordio://org/profile |
Organization profile and settings |
ordio://org/inventory-summary |
Total items, low stock, expiring |
ordio://org/active-alerts |
Currently active/unresolved alerts |
ordio://org/team-summary |
Team count and today's schedule |
ordio://org/daily-metrics |
Today's alerts, tasks, inventory health |
Prompts
inventory-audit, purchase-order-workflow, shift-scheduling, end-of-day-closing, recipe-costing, new-menu-item-setup.
Install and configure
Claude Code
claude mcp add ordio \
--env ORDIO_API_KEY=sk_live_... \
--env ORDIO_ORG_ID=org_xxxxxxxxxx \
-- node /absolute/path/to/ordio-mcp/dist/index.js
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"ordio": {
"command": "node",
"args": ["/absolute/path/to/ordio-mcp/dist/index.js"],
"env": {
"ORDIO_API_KEY": "sk_live_...",
"ORDIO_ORG_ID": "org_xxxxxxxxxx"
}
}
}
}
Restart the client to pick up the new server.
Build first
git clone https://github.com/Abhilashachar/ordio-mcp.git
cd ordio-mcp
npm install
npm run build
Authentication
Every request to the Ordio REST API is sent with Authorization: Bearer ${ORDIO_API_KEY} and is scoped to ORDIO_ORG_ID. You'll need:
| Variable | Required | Default | Description |
|---|---|---|---|
ORDIO_API_KEY |
yes | — | Clerk-issued API key used as the Bearer token |
ORDIO_ORG_ID |
yes | — | Organization ID; all tool calls are scoped to this org |
ORDIO_API_BASE_URL |
no | https://api.getordio.com |
Override for staging or self-hosted deployments |
ORDIO_MCP_TRANSPORT |
no | stdio |
stdio or sse |
ORDIO_MCP_PORT |
no | 3100 |
Port for the SSE HTTP server |
ORDIO_CATALOG_PROXY |
no | off | Set to 1/true to register tools from the API assistant catalog (proxy) instead of the hand-written tool files |
Treat your API key like a password — it grants full access to the configured organization.
Tool source: hand-written vs. catalog proxy (ORDIO_CATALOG_PROXY)
The server can expose its tools from one of two sources, selected at startup by the ORDIO_CATALOG_PROXY flag:
- Default (flag off): the 27 hand-written tool modules under
src/tools/are registered (the ~145 tools listed above). This remains the default during the transition — leaving the flag unset changes nothing. - Catalog proxy (
ORDIO_CATALOG_PROXY=1): the server fetches the ordio-api assistant tool catalog at startup (GET /api/v1/orgs/:orgId/assistant/tools) and registers one MCP tool per catalog entry, executing each through the API's chat/voice gateway (permission scoping, confirmation gating, write rate-limits, and idempotency all apply). This makes the MCP surface and the in-app chat/voice surface the same catalog, so they cannot drift, and a new capability added to the catalog appears here automatically. If the manifest fetch fails — or a single entry is malformed — the proxy degrades gracefully (that tool, or all tools, are skipped) rather than crashing the server.
Why it isn't the default yet. The two sources are mutually exclusive, and the hand-written files are retained for one more step. The assistant catalog is now a superset of this server's non-destructive tools — the domains that used to be MCP-only (oracle, reports, equipment, temperature logs, station/"department" writes, menu-item writes, alert lifecycle, time-clock, kitchen writes, …) are all in the catalog, so flipping the flag no longer drops them. The one deliberate difference is destructive operations: the assistant catalog excludes hard delete_* tools by policy (the assistant never destroys data — use reversible archive/restore instead), so those live only in the hand-written set. Once the proxy is validated against the live manifest in staging, a follow-up flips the default on and removes the hand-written modules.
Prerequisites: the API's /assistant/tools endpoint must be deployed (it is, on ordio-api main), and ORDIO_API_KEY must resolve to a user whose permissions cover the tools you want exposed — the manifest is permission-filtered per caller, and every write still passes the gateway's confirmation/rate-limit checks. (A durable service-user token minted via Clerk, rather than a hand-pasted key, is a planned follow-up.)
Transports
- stdio (default): the standard MCP transport used by Claude Desktop, Claude Code, and Windsurf.
- SSE: an HTTP server with Server-Sent Events for remote or browser-based clients. Enable with
ORDIO_MCP_TRANSPORT=sse.
Local development
npm install
cp env.example .env # fill in ORDIO_API_KEY and ORDIO_ORG_ID
npm run dev # tsx watch — no build step
npm run typecheck # tsc --noEmit
npm run lint # eslint src/
npm test # vitest
Source layout:
src/
index.ts MCP server entrypoint + tool registration
config.ts Environment loading
client.ts Thin REST client (Bearer auth, org scoping)
tools/ One module per domain (inventory, recipes, ...)
resources/ Organization resources
prompts/ Workflow prompts
transports/sse.ts SSE HTTP transport
utils/ Error and response helpers
Status
Active. Version 0.2.0. APIs and tool names may still evolve before a 1.0 release. The server is mid-migration from hand-written tool modules to the unified catalog proxy; the default remains the hand-written set until the proxy is validated in staging. Issues and contributions are welcome.
License
Released under the MIT License.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。