Webcake MCP
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., "@Webcake MCPShow me the latest 10 orders"
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.
Webcake MCP — cầu nối lấy đơn/lead từ Webcake về Claude
Một dịch vụ nhỏ làm 2 việc trong 1:
Hứng webhook Webcake tại
POST /webhook/webcake— mỗi khi có đơn/lead trên landing page, Webcake bắn dữ liệu tới đây và nó lưu lại (SQLite).Cổng MCP tại
/mcp— để Claude Code đọc/tra cứu đơn đã lưu bằng các tool.
Webcake (form/đơn) ──POST──► dịch vụ này ──► Claude Code đọc qua MCP
landing page (hứng + lưu đơn) list_orders / search_orders ...Vì sao phải làm thế này? Webcake không có REST API kéo dữ liệu. Thứ Webcake gọi là "Kết nối API" thực chất là webhook đẩy ra một chiều. Nên ta dựng một chỗ công khai để hứng, rồi cho Claude đọc từ đó.
Các MCP tool
Tool | Chức năng |
| Liệt kê đơn mới nhất, có lọc |
| Chi tiết 1 đơn (kèm payload gốc) |
| Tìm theo SĐT / tên / email / mã đơn |
| Thống kê tổng & theo trạng thái |
Related MCP server: cairnos
A. Chạy thử trên máy (local)
pip install -r requirements.txt
# đặt token tạm và chạy
set WEBHOOK_TOKEN=test123 # Windows CMD; PowerShell: $env:WEBHOOK_TOKEN="test123"
uvicorn server:app --host 127.0.0.1 --port 8000Mở http://127.0.0.1:8000/ thấy dòng "Webcake MCP server OK" là chạy được.
B. Deploy lên hosting (để Webcake bắn tới 24/7)
Webhook cần URL công khai luôn bật. Khuyến nghị host luôn chạy (đừng dùng gói "ngủ khi rảnh" vì đơn đến lúc server đang ngủ có thể bị mất).
Cách 1 — Railway (khuyến nghị, luôn chạy, dễ nhất)
Đẩy thư mục
webcake-mcp/này lên một repo GitHub.Vào railway.app → New Project → Deploy from GitHub repo → chọn repo. Railway tự nhận
Dockerfilevà build.Tab Variables, thêm:
WEBHOOK_TOKEN= một chuỗi bí mật dài (vd bấm tạo ngẫu nhiên).DB_PATH=/data/webcake.db
Tab Settings → Volumes: tạo volume mount vào
/data(để đơn không mất khi deploy lại).Tab Settings → Networking → Generate Domain để lấy URL công khai, vd
https://webcake-mcp-production.up.railway.app.
Cách 2 — Render.com
Đã có sẵn render.yaml. Vào Render → New → Blueprint → trỏ vào repo. Render đọc file này,
tự tạo dịch vụ + volume + token. (Gói free sẽ ngủ khi rảnh — đổi sang starter nếu cần chắc.)
Sau khi deploy xong, URL của anh sẽ có dạng https://<tên>.<host>. Ghi nhớ 2 thứ:
Webhook URL:
https://<tên>.<host>/webhook/webcake?token=<WEBHOOK_TOKEN>MCP URL:
https://<tên>.<host>/mcp
C. Cấu hình bên Webcake (đổ đơn về đây)
Theo tài liệu Webcake (Dashboard → Tích hợp → Tài khoản liên kết):
Thêm cấu hình kết nối API, dán vào ô API URL:
https://<tên>.<host>/webhook/webcake?token=<WEBHOOK_TOKEN>(Token đã nằm trong URL nên không cần điền API Request Header.)
Thêm cấu hình Form và map các trường muốn gửi. Nên bật các trường:
name,phone,email,short_address,province,district,commune,page_name,location,status,display_id,inserted_at,utm_source,utm_medium,utm_campaign,variations(sản phẩm — cần nối POS). (Server tự nhận mọi trường; đây chỉ là các trường nó bóc tách sẵn để tra cứu.)Kết nối cấu hình API với landing page → chọn điều kiện đồng bộ (Hoàn thành form / Thanh toán thành công / …). Có thể thêm
&event=payment_successvào cuối URL để phân biệt loại sự kiện.Bấm gửi thử một đơn trên landing page rồi kiểm tra bằng
order_stats(mục D).
D. Nối vào Claude Code
Đây là remote MCP (qua HTTP). Đăng ký một lần:
claude mcp add --transport http webcake https://<tên>.<host>/mcpXong, trong Claude Code anh hỏi kiểu "liệt kê 10 đơn mới nhất", "tìm đơn của số 0901234567", "hôm nay có bao nhiêu đơn đã thanh toán" — Claude sẽ gọi các tool tương ứng.
Ghi chú
Token: nếu để trống
WEBHOOK_TOKEN, server sẽ nhận mọi webhook (không nên khi chạy thật).Dữ liệu: đây là bản sao để tra cứu; đơn gốc vẫn nằm trong Webcake/Pancake.
Bảo mật MCP: bản này chưa đặt auth cho
/mcp(chỉ dựa vào URL khó đoán). Nếu cần chặt hơn có thể thêm token cho MCP — hỏi để bổ sung.
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 Servers
- Alicense-qualityCmaintenanceMCP server for managing WooCommerce stores through AI assistants like Claude. Provides 101 tools covering products, orders, customers, coupons, shipping, taxes, webhooks, settings, reports, and more.Last updated791MIT
- Alicense-qualityAmaintenanceLocal MCP server for CairnOS, a local-first productivity app. Exposes 13 tools that let Claude read and write the same local SQLite "brain" the app uses — create and update tasks, projects, reminders, ideas, and notes; classify natural-language brain dumps; and query overdue/today tasks and project context.Last updated29MIT
- Flicense-qualityDmaintenanceMCP server that exposes tools to query DulceGestion business data (orders, stock, customers) and retrieve documentation via RAG, enabling Claude to assist with pastry shop management.Last updated
- Alicense-qualityBmaintenanceEnables LLMs to interact with a SQLite e-commerce database via safe, typed MCP tools with read-only guards and auth-gated mutations, plus a Claude agent for answering business questions.Last updated1MIT
Related MCP Connectors
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Agent-commerce MCP server for x402/USDC payments and affiliate splits on Base.
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/TuMazzi/webcake-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server