Content
# UU Running Errand MCP Server
A lightweight MCP Server for creating orders through the MCP protocol on the uupt.com open platform
https://open.uupt.com/
## Product Introduction
The core API of UU Running Errand is now fully compatible with the MCP protocol, making it the first delivery service provider in China to support the MCP protocol. UU Running Errand has completed the integration of its core API interfaces with the MCP protocol, covering functionalities such as price inquiry, order placement, order details, and real-time location of couriers. As the first delivery service provider in China to support the MCP protocol, after the release of the UU Running Errand MCP Server, developers of intelligent agents can quickly access delivery services in large models with simple configurations, enabling the ability to place orders with a single sentence. This significantly lowers the threshold for invoking delivery service-related capabilities during the development of intelligent agent applications and greatly enhances the development efficiency of intelligent agent applications.
## Function Introduction
### Address Price Inquiry
Get the order price.
#### Input Parameters
- `fromAddress`: Shipping address
- `toAddress`: Recipient address
- `adCode`: Order area code
- `sendType`: Order type
#### Output Parameters
- `priceToken`: Amount token (used for order submission)
- `needPayMoney`: Actual payment amount
### Address Order Placement
#### Input Parameters
- `priceToken`: Amount token (returned from the order price calculation interface as `price_token`)
- `receiverPhone`: Recipient phone number (mobile number)
#### Output Parameters
- `orderCode`: UU order number
### Cancel Order
#### Input Parameters
- `orderCode`: UU order number
- `reason`: Cancellation reason
#### Output Parameters
- `deductFee`: Deduction fee (unit: cents)
### Query Order
#### Input Parameters
- `orderCode`: UU order number
#### Output Parameters
- `fromAddress`: Shipping address
- `toAddress`: Recipient address
- `distance`: Delivery distance
- `state`: Current status
## Create Application and Secret Key
### Register on the Open Platform
1. Register for a UU Running Errand open platform account.
2. After successful registration, log in and go to "My Homepage".
### Add Application
1. Click on "My Applications" in the left menu bar.
2. Create an application and obtain the secret key.
### View Application Secret Key
1. The system has integrated UU Running Errand delivery; the application secret key can be configured in the order placement system for use.
2. Developers who have not integrated should proceed with interface docking.
## Quick Start
### Configure Python Local Environment
It is recommended to use Python version 3.11.
### Installation Command
```bash
pip3 install -i https://mirrors.aliyun.com/pypi/simple/ uupt-mcp-server
```
### Update Command
```bash
pip3 install -U -i https://mirrors.aliyun.com/pypi/simple/ uupt-mcp-server
```
### Check Installation Success
```bash
pip3 list
```
### Configure `mcpService`
```json
{
"mcpServers": {
"uupt-mcp-server": {
"disabled": false,
"timeout": 60,
"command": "python",
"args": [
"-m",
"uupt-mcp-server"
],
"env": {
"APP_ID": "Your APP_ID",
"APP_SECRET": "Your APP_SECRET",
"OPEN_ID": "Your OPEN_ID",
"OPENAPI_URL_BASE": "https://openapi.uupt.com/v2_0/"
},
"transportType": "stdio"
}
}
}
```
### Example


Connection Info
You Might Also Like
AP2
AP2 provides code samples and demos for the Agent Payments Protocol.
google-meta-ads-ga4-mcp
MCP server for Google Ads, Meta Ads & GA4 — works with ChatGPT, Claude,...
nuwax
Nuwax AI enables easy building and deployment of private Agentic AI solutions.
daydreams
Daydreams is an AI agent framework in TypeScript for scalable and composable...
concierge
Concierge is a platform for community engagement and scheduling demos.
mcp-server-airbnb
A Desktop Extension for advanced Airbnb search and listings with detailed filtering.