ubeats-bo-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., "@ubeats-bo-mcpshow me yesterday's driver revenue report for Ulaanbaatar"
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.
ubeats-bo-mcp
MCP server for the UBEats Backoffice (office.ubeats.mn, API host
https://ubeats-bo-api.ubcabtech.com). Built on the same pattern as
ubcab-bo-mcp: one self-contained api/index.ts that runs either over stdio
(local / Claude Desktop) or as a bearer-guarded Streamable HTTP endpoint on
Vercel.
Auth
Keycloak SSO — verified 2026-08-18 against a live BO session:
Issuer |
|
OIDC client ( |
|
Token endpoint |
|
Origin/Referer sent |
|
Access tokens live ~5 minutes; the server caches until ~30s before expiry and re-auths silently (refresh_token first, then password grant).
Related MCP server: Respona Dashboard MCP Server
Tools (21)
Reports (8)
All seven report endpoints share one body shape:
POST /v1/api/reports/{report}/list
{ "filter": { "beginDate": "2026-08-17", "endDate": "2026-08-18", "city": "11" },
"page": 1, "limit": 20 }Three things that are easy to get wrong (all confirmed by live testing):
page/limitare top-level, not insidepagination. Sendingpagination: {page, limit}is silently ignored and you get the default 20 rows.endDateis exclusive. For a single day pass the next day.beginDate === endDatereturns996 "Begin date or end date is wrong!".Dates must be
YYYY-MM-DD. ISO datetimes or"YYYY-MM-DD HH:mm:ss"return 996.
Unknown filter keys are silently ignored — no error, no filtering. Always
sanity-check totals.
filter.city enum (Mongolian aimag/city codes, 11 = Улаанбаатар):
11 21 22 23 41 42 43 44 45 46 48 61 62 63 64 65 67 81 82 83 84 85
Tool | Report |
| Жолоочийн цалин бодолт (+ |
| Хүргэлтийн тайлан (returns |
| Санхүүгийн тайлан (29 columns, + |
| Санхүүгийн тайлан (хураангуй, 14 columns) |
| Хоолны тайлан (item-level) |
| Мерчант захиалгын хугацаа |
| Захиалгын дэлгэрэнгүй тайлан |
|
|
Orders (6)
Cloud Kitchen and Merchant orders live in separate collections — a phone number can have orders in both, so search both.
ubeats_order_search / _get / _state_histories,
ubeats_merchant_order_search / _get / _state_histories
Catalog (6)
ubeats_provider_search, ubeats_branch_search (filters: name, status),
ubeats_merchant_search, ubeats_kitchen_search, ubeats_menu_search,
ubeats_notification_search (filters: beginDate, endDate, sender,
senderRole, receiverPhoneNumber)
Escape hatch (1)
ubeats_bo_request — arbitrary method/path against the BO API, with auth and
headers handled. Use it to probe undocumented endpoints before adding a real tool.
Local run
npm install
npm run typecheck
cp .env.example .env # fill in creds
npm run test:login # live smoke test: auth + one driver-revenue page
npm run compile && npm start # stdio MCP serverVercel deploy
Zero-config: api/index.ts is the function, vercel.json rewrites everything
to it. Three rules carried over from ubcab-bo-mcp (learned the hard way):
No legacy
builds+routesinvercel.jsonon a git-imported project — every path 404s. Userewritesonly.No
buildscript in package.json — Vercel then looks forpublic/and the deploy fails. Local compile isnpm run compile.No imports from
src/— esbuild's Node16 resolver won't map.js→.tsand you get a 500. Everything lives in the one file.
Deploy by pushing to main (git integration), not from the CLI.
Env vars to set in Vercel: UBEATS_BO_USERNAME, UBEATS_BO_PASSWORD,
UBEATS_BO_MCP_AUTH_TOKEN (openssl rand -hex 32).
Health check: GET /health → {"status":"ok","server":"ubeats-bo-mcp"}
Known gaps
order-duration'smeta?action=listreturns998 permission_deniedfor some roles even though/listworks. Read the columns off the response instead.financial-report'sincludeCancelledmaps tofilter.state; the BO renders it as a checkbox but the backend effect was not confirmed live./v1/api/categories/listreturns998for the account tested.No
products,delivery-tariffs,delivery-zones,feedbacks, orlotslist route under/v1/api/— those BO screens use different paths.
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
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Official Microsoft MCP Server to query Microsoft Entra data using natural language
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.22MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that provides tools to interact with the Respona Dashboard backend API. It allows users to query ticket data, analytics, and AI flags through natural language interactions.MIT
- AlicenseNot gradedqualityBmaintenanceA TypeScript/Node.js MCP server that wraps the Metabase REST API, enabling AI agents to execute queries, explore schemas, and build dashboards through structured tool calls.44MIT
- FlicenseNot gradedqualityBmaintenanceAn MCP server that exposes a LangChain agent with short-term memory to analyze real e-commerce data through predefined SQL tools, enabling natural language queries on sales, customers, and logistics.-
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/naranmunkh/ubeats-bo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server