智能发单-跑男信息查询,查询跑腿实时信息
Track delivery orders in real-time by entering an order code to monitor courier location and status updates through the UU跑腿 platform.
Instructions
跑男信息查询,需要需要输入订单编号
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| order_code | Yes | 订单编号order_code |
Implementation Reference
- src/uupt_mcp_server/order.py:75-82 (handler)Implementation of the '智能发单-跑男信息查询,查询跑腿实时信息' MCP tool handler.
@mcp.tool(name="智能发单-跑男信息查询,查询跑腿实时信息", description="跑男信息查询,需要需要输入订单编号") async def driver_track(order_code: str = Field(description="订单编号order_code"), # ) -> dict: biz = { 'order_code': order_code, } url = f"{OPENAPI_URL_BASE}order/driverTrack" return post_send(biz, url)