{"name":"com.cordering/whitelabel-ordering","slug":"cordering-whitelabel-ordering","title":null,"description":"Order food from Cordering white-label restaurants: browse menus, confirm, then place an order.","url":"https://mcp.market/server/cordering-whitelabel-ordering","rating":null,"grade":"C","score":57,"certified":false,"status":"active","category":"ecommerce","tags":["ecommerce"],"presence":{"score":5,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":8,"ok":8,"last_checked_at":"2026-09-21T07:40:56.123Z","last_ok_at":"2026-09-21T07:40:56.123Z","latency_ms":156},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/nistruct/cordering-whitelabel-mcp","website":null,"version":"0.0.1","remotes":[{"type":"streamable-http","url":"https://wl-mcp.cordering.com/mcp"}],"packages":[],"tools":[{"name":"check_order","description":"Check the current status of an order the user has already placed, using the order number returned by place_order. Reports whether the restaurant has accepted it, whether it is on its way, and whether it has finished (delivered or declined). There is no background tracking and no notification: call this again when the user asks, and only until the order is reported as finished.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"orderId":{"type":"integer","description":"The order number returned by place_order."},"clientId":{"type":"integer","description":"clientId of the restaurant the order was placed with, from the list_vendors result. Omit only when the server is configured for a single restaurant."}},"required":["orderId"],"additionalProperties":false}},{"name":"list_accounts","description":"Show which accounts are signed in, per restaurant, and which one is active. Useful when the user keeps separate work and personal accounts.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[],"additionalProperties":false}},{"name":"list_menu","description":"Show the restaurant's menu to the user as a visual HTML document — a horizontally-scrollable category strip with item photos, names and prices. Present the returned HTML by opening it as an HTML artifact; do NOT paste the markup into the chat as text. (Ordering does not require this — prepare_order resolves item names on its own.)","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"clientId":{"type":"integer","description":"clientId of the restaurant, from a list_vendors result. Omit only when the server is configured for a single restaurant."},"vendorId":{"type":"integer","description":"vendorId of the restaurant, from a list_vendors result. Omit only when the server is configured for a single restaurant."}},"required":[],"additionalProperties":false}},{"name":"list_vendors","description":"Find restaurants (vendors) available for ordering. This is the discovery entry point: each card shows the clientId and vendorId that list_menu and prepare_order need. Call it with no arguments to list every restaurant — that is the normal case. Returns a complete, self-contained HTML document of vendor cards (logo, address, phone, delivery fee) — restaurants open today first in colour, those closed today greyed out at the bottom. Present the returned HTML to the user by opening it as an HTML artifact; do not paste the markup into the chat.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"city":{"type":"string","description":"City to filter by. Pass this ONLY when the user named a city themselves; never guess one from context, because a filter that matches nothing hides restaurants the user could have ordered from."}},"required":[],"additionalProperties":false}},{"name":"login","description":"Start signing the user in to a restaurant so they can place orders. Browsing the menu never needs this — only ordering and saving an address do. Returns a URL the user must open in a browser to sign in with Google or Apple; afterwards they copy the 'code' value from the address bar and you call submit_login_code. Each restaurant has its own login, so this must be done per restaurant.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"clientId":{"type":"integer","description":"clientId of the restaurant to sign in to, from a list_vendors result. Omit only when the server is configured for a single restaurant."}},"required":[],"additionalProperties":false}},{"name":"logout","description":"Sign the user out. By default signs out of every restaurant; pass a clientId to sign out of one, and an account label to sign out just that account.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"clientId":{"type":"integer","description":"clientId of the restaurant to sign out of. Omit to sign out everywhere."},"label":{"type":"string","description":"Account label to sign out, e.g. 'work'. Omit to sign out every account at that restaurant."}},"required":[],"additionalProperties":false}},{"name":"place_order","description":"Place an order previously staged by prepare_order. Requires the confirmationToken returned by prepare_order. This causes a real order to be sent to the vendor.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"confirmationToken":{"type":"string","description":"The confirmationToken returned by prepare_order."}},"required":["confirmationToken"],"additionalProperties":false}},{"name":"prepare_order","description":"Resolve a natural-language food order (one or more items) to concrete menu items and return a summary plus a confirmation token. Does NOT place the order. Call place_order with the returned token to actually place it.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"clientId":{"type":"integer","description":"clientId of the restaurant, from a list_vendors result. Omit only when the server is configured for a single restaurant."},"vendorId":{"type":"integer","description":"vendorId of the restaurant, from a list_vendors result. Omit only when the server is configured for a single restaurant."},"items":{"type":"array","items":{"type":"object","properties":{"extras":{"description":"Extra ingredients to add to this item, by name, e.g. ['Šunka']. Each must be one of the extras that item offers (its own composition ingredients are not addable); repeat a name to add it twice.","type":"array","items":{"type":"string"}},"item":{"type":"string","description":"Menu item name, e.g. 'Margherita'."},"quantity":{"type":"integer","format":"int32","description":"Quantity for this item, at least 1. Defaults to 1 if omitted."},"size":{"type":"string","description":"Requested size by name, e.g. '33cm' or 'Large'. Selects that size variant of the item; omit for the standard size. A size the item is not available in is rejected with the list of sizes it does offer."}},"required":["item"]},"description":"The item(s) to order — one or more lines, each with an item name, an optional quantity (default 1), an optional size, and optional extra ingredients by name."},"deliveryAddress":{"type":"string","description":"Delivery address text, e.g. 'Orlovica Pavla 26'."},"date":{"type":"string","description":"Delivery date-time as an ISO-8601 UTC instant, e.g. '2026-07-25T12:00:00Z'. Must be in the future. Defaults to 5 minutes from now (as soon as possible) — only pass this when the user asks for a specific time."},"notes":{"type":"string","description":"Optional notes for the vendor."},"cutlery":{"type":"boolean","description":"Whether to ask the restaurant to include disposable cutlery. Only pass this when the user says either way; omit to leave it to the restaurant's default. Ignored (with a note) by vendors that do not offer it."},"bringTerminal":{"type":"boolean","description":"Whether the courier should bring a card terminal so the order can be paid by card on delivery. Pass true when the user wants to pay by card, false for cash; omit when they do not say. Ignored (with a note) by vendors that cannot take card on delivery."}},"required":["items","deliveryAddress"],"additionalProperties":false}},{"name":"submit_login_code","description":"Complete a sign-in started by login, using the 'code' value the user copied from the browser address bar. On success the user can place orders from that restaurant.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"code":{"type":"string","description":"The code value copied from the redirect URL after signing in."},"clientId":{"type":"integer","description":"clientId of the restaurant being signed in to. Omit if only one sign-in is in progress."},"label":{"type":"string","description":"Optional label for this account, e.g. 'work' or 'personal'. Defaults to the email address on the account."}},"required":["code"],"additionalProperties":false}},{"name":"switch_account","description":"Choose which signed-in account to order with at a restaurant, e.g. to switch between work and personal. The account must already be signed in via login.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"label":{"type":"string","description":"Account label to make active, e.g. 'work'."},"clientId":{"type":"integer","description":"clientId of the restaurant. Omit only when the server is configured for a single restaurant."}},"required":["label"],"additionalProperties":false}}],"scan":{"score":57,"grade":"C","scanned_at":"2026-09-21T05:08:28.470Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-21T05:08:28.503Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1244ms"]},"poisoning":{"score":15,"max":15,"notes":["10 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 4 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["repository not readable: repo not found"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"}],"inputs":{"probes":[{"url":"https://wl-mcp.cordering.com/mcp","reachable":true,"authRequired":false,"latencyMs":1244,"serverInfo":{"name":"cordering-mcp","version":"0.0.1"}}],"packages":[],"repo":{"found":false,"owner":"nistruct","repo":"cordering-whitelabel-mcp","error":"repo not found"},"icon":{"url":"https://cordering.com/wp-content/uploads/2025/03/cropped-Logo-192x192.png","source":"site","width":192,"height":192},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":5}}}},"grade_history":[],"reviews":[]}