{"name":"io.github.yh919/servd-agent-ordering","slug":"yh919-servd-agent-ordering","title":"Servd Agentic Ordering","description":"Discover Servd venues, browse menus, validate carts, place confirmed orders, and track status.","url":"https://mcp.market/server/yh919-servd-agent-ordering","rating":null,"grade":"C","score":57,"certified":false,"status":"active","category":"ecommerce","tags":["ecommerce","ai"],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":95,"checks":20,"ok":19,"last_checked_at":"2026-09-24T10:21:16.018Z","last_ok_at":"2026-09-24T10:21:16.018Z","latency_ms":937},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/yh919/servd","website":"https://getservd.me/en","version":"1.6.0","remotes":[{"type":"streamable-http","url":"https://app.getservd.me/api/v1/agent/mcp"}],"packages":[],"tools":[{"name":"check_order","description":"Check payment and fulfillment state for an order created by place_order, or verify a signed sandbox simulation. The result intentionally omits diner contact, address, notes, and line items. Poll while state is awaiting_payment; stop when it becomes paid, preparing, ready, out_for_delivery, completed, cancelled, or expired.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"order_id":{"type":"string","description":"The machine-facing orderId from place_order."}},"required":["order_id"],"additionalProperties":false}},{"name":"find_venues","description":"Find restaurants on Servd. Returns each venue’s slug, name and city — the slug is what every other tool needs. Pass `query` to filter by name or city.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"type":"string","description":"Optional name or city filter, case-insensitive."},"limit":{"type":"integer","minimum":1,"maximum":100,"default":25}},"additionalProperties":false}},{"name":"get_menu","description":"Get a venue’s full live menu. Use item ids in validate_cart and place_order. Prices are major-unit decimal strings in the menu currency; required modifier groups declare min and max selections.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"type":"string","description":"The venue slug."}},"required":["slug"],"additionalProperties":false}},{"name":"get_venue","description":"Get one venue’s opening hours, current open state, pickup and delivery availability, published policies, and available agent-order payment mode.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"type":"string","description":"The venue slug."}},"required":["slug"],"additionalProperties":false}},{"name":"place_order","description":"Create a REAL restaurant order only after showing the latest validate_cart result and receiving explicit diner confirmation. A venue explicitly marked agentOrdering.sandbox instead returns a no-charge, no-kitchen simulation with sandbox=true and createsProductionOrder=false. Pass that result’s confirmation.token so the server can prove the cart and live quote did not change. The server recalculates all prices. Use a unique idempotency key, show orderNumber and the labeled customerLinks, and poll check_order for payment and fulfillment status. Unpaid online orders expire after 30 minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"type":"string","minLength":1,"maxLength":160,"description":"The venue slug returned by find_venues."},"fulfillment":{"type":"string","enum":["pickup","delivery"]},"items":{"type":"array","minItems":1,"maxItems":100,"items":{"type":"object","additionalProperties":false,"required":["menu_item_id","quantity"],"properties":{"menu_item_id":{"type":"string","minLength":1,"maxLength":128,"description":"The item id returned by get_menu."},"quantity":{"type":"integer","minimum":1,"maximum":99},"selected_modifiers":{"type":"array","maxItems":50,"items":{"type":"object","additionalProperties":false,"required":["group","name"],"properties":{"group":{"type":"string","minLength":1,"maxLength":200},"name":{"type":"string","minLength":1,"maxLength":200},"price_adj":{"type":"number","description":"Informational major-unit amount from get_menu; the server recalculates it."}}}},"special_instructions":{"type":"string","maxLength":1000}}}},"combos":{"type":"array","minItems":1,"maxItems":100,"items":{"type":"object","additionalProperties":false,"required":["combo_id","quantity"],"properties":{"combo_id":{"type":"string","minLength":1,"maxLength":128},"quantity":{"type":"integer","minimum":1,"maximum":99}}}},"customer":{"type":"object","additionalProperties":false,"properties":{"name":{"type":"string","maxLength":200},"phone":{"type":"string","maxLength":64},"email":{"type":"string","format":"email","maxLength":320}},"required":["name","phone"],"description":"The diner’s minimum contact details required by the venue."},"delivery":{"type":"object","additionalProperties":false,"properties":{"street":{"type":"string","maxLength":500},"city":{"type":"string","maxLength":200},"building":{"type":"string","maxLength":200},"floor":{"type":"string","maxLength":200},"apartment":{"type":"string","maxLength":200},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}},"description":"For delivery, street is required and coordinates may be needed for fees/radius."},"payment_method":{"type":"string","enum":["cash","online"],"default":"online"},"tip_amount":{"type":"number","minimum":0,"description":"Major currency units."},"confirmed":{"type":"boolean","const":true,"description":"Set true only after the diner explicitly confirms the latest validate_cart result."},"confirmation_token":{"type":"string","minLength":1,"maxLength":2048,"description":"The short-lived confirmation.token from the exact validate_cart result shown to the diner."},"idempotency_key":{"type":"string","minLength":1,"maxLength":255,"description":"Use validate_cart.confirmation.idempotencyKey exactly; reuse it for retries of this confirmed order."}},"required":["slug","fulfillment","customer","confirmed","confirmation_token","idempotency_key"],"additionalProperties":false,"anyOf":[{"required":["items"]},{"required":["combos"]}]}},{"name":"validate_cart","description":"Validate a proposed cart and calculate authoritative lines, discounts, fees, tax and total without creating an order. Call this immediately before asking the diner to confirm. Send only the minimum diner contact and fulfillment data required for this order.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"type":"string","minLength":1,"maxLength":160,"description":"The venue slug returned by find_venues."},"fulfillment":{"type":"string","enum":["pickup","delivery"]},"items":{"type":"array","minItems":1,"maxItems":100,"items":{"type":"object","additionalProperties":false,"required":["menu_item_id","quantity"],"properties":{"menu_item_id":{"type":"string","minLength":1,"maxLength":128,"description":"The item id returned by get_menu."},"quantity":{"type":"integer","minimum":1,"maximum":99},"selected_modifiers":{"type":"array","maxItems":50,"items":{"type":"object","additionalProperties":false,"required":["group","name"],"properties":{"group":{"type":"string","minLength":1,"maxLength":200},"name":{"type":"string","minLength":1,"maxLength":200},"price_adj":{"type":"number","description":"Informational major-unit amount from get_menu; the server recalculates it."}}}},"special_instructions":{"type":"string","maxLength":1000}}}},"combos":{"type":"array","minItems":1,"maxItems":100,"items":{"type":"object","additionalProperties":false,"required":["combo_id","quantity"],"properties":{"combo_id":{"type":"string","minLength":1,"maxLength":128},"quantity":{"type":"integer","minimum":1,"maximum":99}}}},"customer":{"type":"object","additionalProperties":false,"properties":{"name":{"type":"string","maxLength":200},"phone":{"type":"string","maxLength":64},"email":{"type":"string","format":"email","maxLength":320}}},"delivery":{"type":"object","additionalProperties":false,"properties":{"street":{"type":"string","maxLength":500},"city":{"type":"string","maxLength":200},"building":{"type":"string","maxLength":200},"floor":{"type":"string","maxLength":200},"apartment":{"type":"string","maxLength":200},"latitude":{"type":"number","minimum":-90,"maximum":90},"longitude":{"type":"number","minimum":-180,"maximum":180}}},"payment_method":{"type":"string","enum":["cash","online"],"default":"online"},"tip_amount":{"type":"number","minimum":0,"description":"Major currency units."}},"required":["slug","fulfillment"],"additionalProperties":false,"anyOf":[{"required":["items"]},{"required":["combos"]}]}}],"scan":{"score":57,"grade":"C","scanned_at":"2026-09-21T13:03:03.357Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-21T13:03:03.296Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 720ms"]},"poisoning":{"score":15,"max":15,"notes":["6 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 2 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://app.getservd.me/api/v1/agent/mcp","reachable":true,"authRequired":false,"latencyMs":720,"serverInfo":{"name":"servd-agent-ordering","version":"1.6.0"}}],"packages":[],"repo":{"found":false,"owner":"yh919","repo":"servd","error":"repo not found"},"icon":{"url":"https://getservd.me/icon.png","source":"site","width":512,"height":512},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}