DuckHub QR Menu
DuckHub MCP Server — restaurant menu management for AI agents
Hosted MCP (Model Context Protocol) server for DuckHub. Manage a restaurant's menu — products, categories, modifiers, prices, images, translations, promotions, orders — straight from Claude, Cursor, or any MCP-capable AI agent. One URL, your
dk_live_API key, 39 ready-made tools. No install, no code — the server is hosted by DuckHub.
What is this?
DuckHub is a SaaS platform for restaurants: digital menus, contactless
ordering, table reservations and delivery. The DuckHub MCP server exposes
the DuckHub v1 REST API to AI agents as typed
tools. Instead of writing HTTP requests, your agent sees build_menu,
set_image, publish_menu and can build and manage a full menu from a
conversation.
The server is remote / hosted — there is nothing to install or run. You add
one URL to your AI client and authenticate with the same dk_live_ API key the
REST API uses.
Related MCP server: ShopGraph
Endpoint
POST https://mcp.duck-hub.com/mcpIf the mcp. subdomain is not yet resolvable in your network, the same server is
also reachable at https://api.duck-hub.com/mcp.
Transport: Streamable HTTP (stateless)
Auth:
Authorization: Bearer dk_live_...header (API key from the DuckHub app → Integrations page)All the usual rate limits, plan limits and the audit log apply unchanged.
Connect your client
Get your API key from the DuckHub app → Integrations, then:
Claude Code
claude mcp add --transport http duckhub https://mcp.duck-hub.com/mcp \
--header "Authorization: Bearer dk_live_your_api_key"Cursor — .cursor/mcp.json
{
"mcpServers": {
"duckhub": {
"url": "https://mcp.duck-hub.com/mcp",
"headers": { "Authorization": "Bearer ${env:DUCKHUB_API_KEY}" }
}
}
}Claude Desktop — claude_desktop_config.json
Desktop connects remote servers through the mcp-remote bridge (needs Node.js):
{
"mcpServers": {
"duckhub": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.duck-hub.com/mcp",
"--header",
"Authorization: Bearer dk_live_your_api_key"
]
}
}
}Claude API — MCP connector block
{
"mcp_servers": [
{
"type": "url",
"url": "https://mcp.duck-hub.com/mcp",
"name": "duckhub",
"authorization_token": "dk_live_your_api_key"
}
]
}claude.ai (web) & ChatGPT — OAuth
claude.ai and ChatGPT connect custom MCP servers through OAuth (there is no API-key field). Add DuckHub as a custom connector with the URL:
https://mcp.duck-hub.com/mcpthen Sign in to DuckHub, choose the venue to connect, and approve. The flow uses OAuth 2.1 with PKCE — your DuckHub login authorizes access and no API key is stored in the client. One DuckHub account maps to one connected venue at a time (reconnect from the DuckHub app to switch venues).
Read-only access
The Integrations page can also issue a read-only key (same dk_live_
format). With it every read tool works normally, and every write tool fails with
403 READ_ONLY_KEY — the API refuses the write before touching anything. Write
tools are also marked with standard MCP annotations (readOnlyHint /
destructiveHint), so well-behaved clients can filter or confirm them. Use a
read-only key for agents that should analyse the menu but never change it.
The 39 tools
All tools wrap the v1 REST API — same behavior, same limits.
Group | Tools |
Discover & read |
|
Build the menu |
|
Settings |
|
Media |
|
Translations |
|
Merchandising | promotions / banners / tables — |
Go live |
|
Orders (paid plans) |
|
Agents should call get_reference first: it returns every allowed enum
value, the venue's plan limits and current usage, and the money conventions.
Things agents get wrong
Money is integers in minor units —
12.50is sent as1250(cents).Nothing is guest-visible until you publish.
build_menuedits the draft;publish_menumakes it live (with a rollback snapshot).Dry-run first.
build_menuandcleanup_menuacceptdryRun: true.cleanup_menuarrays are KEEP-lists — anything not listed is hidden/deleted.Orders tools need a paid plan — else
403 PAID_PLAN_REQUIRED.
Full documentation
→ docs.duck-hub.com/mcp — connection guide, per-tool reference, error envelope, rate/plan limits.
About / support
Product: duck-hub.com
API docs: docs.duck-hub.com
Issues / questions: open an issue in this repository.
License
MIT — see LICENSE. This repository contains documentation and the server manifest only; the MCP server itself is hosted by DuckHub.
Related MCP Connectors
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Hosted MCP for e-commerce: live product catalog, stock, and pricing for AI agents.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI agents to discover restaurants and place food delivery orders on Uber Eats and Thuisbezorgd (Just Eat Takeaway). It provides tools for restaurant discovery and order management through normalized platform APIs.8 npm2MIT
- AlicenseAqualityBmaintenanceStructured product data from the open web — where platform APIs don't reach. Schema.org + AI extraction. Pay per call via Stripe MPP.241 npm3Apache 2.0
- AlicenseAqualityAmaintenanceMCP server for Rakuten APIs. Search products, books, hotels, and rankings across Japan's largest e-commerce platform.2840 npm5MIT
- AlicenseAqualityAmaintenanceCross-border product catalog for AI agents. Search and compare products from US and South East Asian markets via Model Context Protocol.6127 npm12MIT