MCP
安全连接 AI 智能体:User MCP 用于运营,Developer MCP 用于集成 — 含 profile、confirm、dry-run 与人工审批。
本指南是开发者中心的 Superroute MCP 专栏,涵盖两个服务端、智能体安全模型,以及来自 UserMcpToolCatalog 的实时工具目录。
https://api.superlabel.ca/mcphttps://api.superlabel.ca/mcp/developer模型上下文协议(MCP)是一种开放标准,允许 Claude、Cursor 和 ChatGPT 等 AI 助手与外部工具和服务交互。它使您的 AI 能够在对话中直接执行实际操作,例如追踪包裹。
通过配置 Superroute MCP 服务器,您的 AI 助手无需离开工作流程即可使用物流工具。
按受众选择正确的服务。不要给无人值守智能体分配带完全权限的 Developer 服务。
| 服务名 | 端点 | 受众 | 鉴权 |
|---|---|---|---|
superroute |
https://api.superlabel.ca/mcp |
运营 / 客服 / 业务智能体 | Bearer + 可选 profile/scopes(未设置时兼容全量) |
superroute-developer |
https://api.superlabel.ca/mcp/developer |
集成开发者与编码智能体 | 优先连接级 Bearer;tool 参数 api_token 将淘汰 |
包裹追踪等公开工具无需认证即可使用。将以下配置添加到您的 MCP 客户端:
{
"mcpServers": {
"super-label": {
"type": "url",
"url": "https://api.superlabel.ca/mcp"
}
}
}
要使用需要用户权限的工具,请在配置中添加您的 API Bearer 令牌:
务必把令牌放在 MCP 连接请求头中,切勿写入工具参数或提示词。
{
"mcpServers": {
"super-label": {
"type": "url",
"url": "https://api.superlabel.ca/mcp",
"headers": {
"Authorization": "Bearer <your-api-token>",
"X-MCP-Profile": "ops-readonly"
}
}
}
}
使用您的凭据调用登录接口:
curl -X POST https://api.superlabel.ca/api/v1/user/login \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com", "password": "your-password"}'
响应将包含您的访问令牌:
{
"access_token": "eyJ0eXAiOiJKV1Qi...",
"token_type": "Bearer",
"expires_at": "2026-02-20 00:00:00"
}
在 MCP 配置的 Authorization 头中使用 access_token 值。
User MCP 面向最小权限智能体。创建 token 时选择 MCP 配置文件(默认运营只读),或通过 header 传递 profile/scopes。
命名的权限包。无人值守智能体优先 ops-readonly 或 support。
| 配置 | 名称 | 权限范围 |
|---|---|---|
ops-readonly |
运营只读 | orders:read, labels:read, routes:read, drivers:read, analytics:read, address:read, approvals:read |
support |
客服(客户服务) | orders:read, analytics:read, address:read, approvals:read |
ops-write |
运营写入(订单 + 面单 + 路线) | orders:read, orders:write, labels:read, labels:write, routes:read, routes:write, drivers:read, analytics:read, address:read, approvals:read, approvals:write |
wms-readonly |
WMS 只读 | wms:read, orders:read |
datasets-readonly |
数据集只读 | datasets:read |
alliance-readonly |
联盟只读 | alliance:read |
full |
完全访问(全部 MCP 工具)— 不适用于无人值守智能体 | * |
{
"mcpServers": {
"super-label": {
"type": "url",
"url": "https://api.superlabel.ca/mcp",
"headers": {
"Authorization": "Bearer <ops-readonly-token>",
"X-MCP-Profile": "ops-readonly"
}
}
}
}
| 请求头 | 用途 |
|---|---|
Authorization: Bearer … | API Bearer 令牌(连接级)。 |
X-MCP-Profile | 命名配置:ops-readonly、support、ops-write、wms-readonly、datasets-readonly、alliance-readonly、full。 |
X-MCP-Scopes | 显式逗号分隔 scopes(覆盖 profile)。 |
X-MCP-Dry-Run: 1 | 预览写操作且不落库。 |
X-MCP-Require-Approval: 1 | 将高危写操作入队等待人工批准,而不是立即执行。 |
以下工具在 tools/call 时需要 confirm=true(或使用审批队列):
cancel_orderbulk_create_ordersreroute_to_addressbuild_routehold_orderrelease_orderapprove_pending_write无人值守智能体应提议写操作;由人在应用内或通过 MCP 批准。
Web 界面路径(需登录): /mcp-approvals
优先在连接上使用 Authorization: Bearer。按工具传 api_token 已弃用,将于 2026-12-31 后硬切断。
以下工具目前在 MCP 服务器上可用: 47 个来自服务端目录的实时工具
此表在请求时由 UserMcpToolCatalog 生成,与生产环境认证全量 tools/list 保持同步。
| 工具 | 认证 | 风险 | 权限 | 描述 |
|---|---|---|---|---|
track_package
|
公开 | low | — |
Track a package by its tracking number. Returns delivery status, tracking events timeline, and proof of delivery if available. |
otep_tracking
|
公开 | low | — |
Get the unified OTEP (Open Tracking Event Protocol) timeline for a tracking number — self-delivery, third-party and carrier events normalize... |
get_capabilities
|
公开 | low | — |
List MCP tools available to the current connection, with risk level, required scopes, and whether confirm=true is needed. Call this first wh... |
get_orders
|
需要 | low | orders:read |
List orders with filtering and pagination. Returns order details including status, tracking, and delivery info. |
get_order_detail
|
需要 | low | orders:read |
Get full details of a specific order by ID, including address, status, packages, and tracking info. |
find_order
|
需要 | low | orders:read |
Fuzzy-find orders across tracking number, external tracking, ref, recipient name, and phone in a single query. Use this instead of get_order... |
get_operation_events
|
需要 | low | orders:read |
Get the full audit trail for orders — every status change, who performed it, GPS coordinates, and photos. |
create_order
|
需要 | medium | orders:write |
Create a delivery/pickup order. D=delivery (warehouse→customer), P=pickup (customer→warehouse), P2P=peer-to-peer. Returns order ID and track... |
cancel_order
confirm
|
需要 | high | orders:write |
Cancel an existing order by order ID. Only works for orders not yet delivered. |
bulk_create_orders
confirm
|
需要 | high | orders:write |
Create up to 100 delivery orders in one call. Returns a per-order success/failure summary; partial failures do not abort the batch unless st... |
reroute_to_address
confirm
|
需要 | high | orders:write |
Change the delivery address of an order that has not been picked up yet: cancels the original order and recreates it with the new address. R... |
update_delivery_instruction
|
需要 | medium | orders:write |
Update only the delivery_instruction field on an existing order (PATCH). Safer than full order rewrite. |
update_order_note
|
需要 | medium | orders:write |
Update only the internal note field on an existing order (PATCH). |
update_time_window_by_refs
|
需要 | medium | orders:write |
Bulk-update delivery time windows (and optional schedule_date) for orders identified by external refs. |
hold_order
confirm
|
需要 | high | orders:write |
Put an order on HOLD so it is not dispatched until release_order. HIGH-RISK: requires confirm=true. |
release_order
confirm
|
需要 | high | orders:write |
Release an order from HOLD back to NEW_ORDER. HIGH-RISK: requires confirm=true. |
propose_write
|
需要 | low | approvals:read |
Queue a write/high-risk tool for human approval instead of executing it. Reviewers use list_pending_approvals + approve_pending_write. |
list_pending_approvals
|
需要 | low | approvals:read |
List pending MCP write approvals for this business (or mine_only). |
approve_pending_write
confirm
|
需要 | high | approvals:write |
Approve and execute a pending write proposal. HIGH-RISK: requires confirm=true. Reviewer must have scopes for the underlying tool. |
reject_pending_write
|
需要 | medium | approvals:write |
Reject a pending write proposal without executing it. |
get_routes
|
需要 | low | routes:read |
List delivery routes with their status, assigned driver, and order count. |
get_route_detail
|
需要 | low | routes:read |
Get one route with its stop/order list. Prefer this over get_routes when you already know route_id. |
get_drivers
|
需要 | low | drivers:read |
List drivers for the authenticated business (ids, names, capacity defaults). Use driver id with get_driver_routes_today or route tools. |
get_driver_routes_today
|
需要 | low | routes:read, drivers:read |
Orders assigned to a driver on a given date (defaults to today). Useful for "what is driver X running today?" |
get_build_route_options
|
需要 | low | routes:read |
List routing engines, balance modes, capacity types, and defaults before calling build_route. |
build_route
confirm
|
需要 | high | routes:write |
Build/optimize a delivery route (POST /api/v3/client/build-route). HIGH-RISK: assigns orders to drivers. Call get_build_route_options first.... |
order_snapshot
|
需要 | low | orders:read |
One-call order context for support: order detail + operation events + public tracking (when tracking number is known). Pass order_id or trac... |
list_exceptions
|
需要 | low | orders:read |
List failed/returned/exception-like orders for a schedule date (default today). Read-only ops triage helper. |
get_shipping_methods
|
需要 | low | labels:read |
List available shipping carriers/methods. Returns IDs and names — use the ID for rate/label tools. |
get_shipping_rate
|
需要 | low | labels:read |
Get a shipping cost quote. Dry-run — no label created. Returns rate options with pricing and transit time. |
create_shipping_label
|
需要 | medium | labels:write |
Book a shipment with a carrier and generate a shipping label with tracking numbers. |
quote_and_ship
|
需要 | medium | labels:write |
One-shot: rate across all enabled carriers, pick the best one by strategy, create the shipping label, return tracking number. Saves 3+ tool... |
compare_all_carriers
|
需要 | low | labels:read |
Get rate quotes from every enabled carrier for the same shipment, in one call. Returns a sorted comparison (cheapest first) with price + tra... |
search_address
|
需要 | low | address:read |
Search and resolve addresses by postal code or free-text query. Returns structured address suggestions. |
daily_digest
|
需要 | low | analytics:read |
One-call summary of today's logistics activity: total orders, by status, exceptions (failed/returned), pending pickups. Designed as the firs... |
get_orders_summary
|
需要 | low | analytics:read |
Aggregate order metrics over a time window: counts by status, top carriers, on-time rate, exception count. Use period=today|week|month or pa... |
get_account_credits
|
需要 | low | analytics:read |
Get the authenticated customer's wallet balance, currency, and recent topup history. Customer (B2C) accounts only — returns an error for cli... |
get_warehouses
|
需要 | low | wms:read |
List WMS warehouses available to the authenticated business. |
get_inventory
|
需要 | low | wms:read |
Query WMS inventory (POST /api/v1/wms/inventory). Pass filters supported by the inventory API (sku, warehouse_id, etc.). |
list_datasets
|
需要 | low | datasets:read |
List custom datasets available to the business. |
get_dataset
|
需要 | low | datasets:read |
Get one dataset by id (metadata/columns). |
list_dataset_groups
|
需要 | low | datasets:read |
List groups inside a dataset. |
search_dataset_records
|
需要 | low | datasets:read |
Search records across groups in a dataset (POST .../search). |
list_alliances
|
需要 | low | alliance:read |
List alliances the authenticated business belongs to. |
get_alliance
|
需要 | low | alliance:read |
Get one alliance by id. |
list_alliance_members
|
需要 | low | alliance:read |
List members of an alliance. |
list_accessible_clients
|
需要 | low | alliance:read |
List clients accessible via alliance partnerships. |
选择您的 AI 客户端以获取相应的配置说明:
Claude Code 从项目根目录或主目录中的 .mcp.json 文件读取 MCP 配置。
{
"mcpServers": {
"super-label": {
"type": "url",
"url": "https://api.superlabel.ca/mcp"
}
}
}
要使用认证工具,请添加 headers 字段:
{
"mcpServers": {
"super-label": {
"type": "url",
"url": "https://api.superlabel.ca/mcp",
"headers": {
"Authorization": "Bearer <your-api-token>",
"X-MCP-Profile": "ops-readonly"
}
}
}
}
Cursor 通过内置配置支持 MCP 服务器。
{
"mcpServers": {
"super-label": {
"type": "url",
"url": "https://api.superlabel.ca/mcp"
}
}
}
Windsurf 使用全局 MCP 配置文件。
{
"mcpServers": {
"super-label": {
"serverUrl": "https://api.superlabel.ca/mcp"
}
}
}
ChatGPT 为 Plus、Pro 和 Team 用户支持 MCP 连接。
https://api.superlabel.ca/mcp2026-07-28, 2025-11-25, 2025-06-18, 2025-03-26, 2024-11-05 https://api.superlabel.ca/.well-known/oauth-protected-resource