- Home
- MCP servers
- UUPT
UUPT
- python
1
GitHub Stars
python
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"uupt-mcp-uupt-mcp-server": {
"command": "uvx",
"args": [
"uupt_mcp_server"
],
"env": {
"APP_ID": "YOUR_APP_ID",
"OPEN_ID": "YOUR_OPEN_ID",
"APP_SECRET": "YOUR_APP_SECRET",
"ORDER_CITY": "郑州市(Your issuing city, full name including the city suffix)"
}
}
}
}UU跑腿 MCP Server provides a lightweight MCP endpoint that lets you access UU跑腿 delivery services through the MCP protocol. With this server, you can perform price inquiries, place orders, cancel orders, and query order details in a standardized way, enabling easy integration into intelligent agents and automated workflows.
How to use
You can connect your MCP client to this server to perform common delivery operations. Use the price inquiry to estimate costs before placing an order, then submit the order with a price token. You can cancel orders when needed and query details to track delivery status and route progress. To integrate, configure your MCP client to communicate with the local stdio MCP server described in the setup steps, and provide your application credentials and city context as required by the server.
How to install
Prerequisites: you should have Python 3.11 installed on your system.
Install the MCP server package from PyPI.
Run the server using the configured stdio runtime as shown in the configuration example.
Configuration and runtime
The MCP server is configured with a stdio connection that runs a local runtime process. You provide runtime command, arguments, and environment variables to enable secure access to UU跑腿 services.
Tools and capabilities
This server exposes core MCP endpoints corresponding to the following capabilities: price inquiry, place order, cancel order, and query order. Each capability accepts specific input parameters and returns structured results to support end-to-end delivery workflows.
Available tools
price_inquiry
Query a delivery price for given from/to addresses and region code, returning a price token and payable amount.
place_order
Submit an order using the price token and recipient phone to create a UU order and obtain an order code.
cancel_order
Cancel an existing order by its order code and provide a reason, receiving any deductable fees.
query_order
Retrieve detailed information about an existing order, including addresses, distance, and current state.