UPS MCP Server
Provides tools for UPS shipping and logistics, including creating shipments, tracking packages, getting rates, validating addresses, scheduling pickups, and finding UPS locations.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@UPS MCP Servertrack package 1Z999AA10123456784"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
UPS MCP Server
A Model Context Protocol server for UPS shipping and logistics APIs. Enables AI agents to create shipments, track packages, get rates, validate addresses, schedule pickups, and find UPS locations.
Quick Install
Add to your MCP config (~/.cursor/mcp.json, .cursor/mcp.json, or claude_desktop_config.json):
{
"mcpServers": {
"ups": {
"command": "npx",
"args": ["-y", "ups-mcp"],
"env": {
"UPS_CLIENT_ID": "your_client_id",
"UPS_CLIENT_SECRET": "your_client_secret",
"UPS_ACCOUNT_NUMBER": "123456",
"UPS_ENVIRONMENT": "sandbox"
}
}
}
}Get your credentials at the UPS Developer Portal.
Tools
Tool | Description |
| Create a shipment and generate a shipping label |
| Cancel a shipment and void its label |
| Track a package with full activity history |
| Get shipping rates for all available services |
| Get estimated delivery dates |
| Validate US/PR addresses |
| Schedule a package pickup |
| Cancel a scheduled pickup |
| Find nearby UPS stores and drop-off points |
Prerequisites
Node.js 20+
UPS Developer Portal credentials (Get started)
UPS account number (for shipping and rating)
Installation
npx ups-mcpOr install globally:
npm install -g ups-mcpConfiguration
Environment Variables
Variable | Required | Description |
| Yes | OAuth Client ID from UPS Developer Portal |
| Yes | OAuth Client Secret |
| No |
|
| No | 6-digit UPS account (required for shipping/rating) |
Client | Config file |
Cursor (project) |
|
Cursor (global) |
|
Claude Desktop |
|
VS Code |
|
Usage Examples
Create a Shipment
"Ship a 5lb package from 123 Main St, Atlanta GA 30301 to 456 Oak Ave, Los Angeles CA 90001 via UPS Ground"
Get Rates
"What are the shipping rates for a 10lb package from NYC to Chicago?"
Track a Package
"Track package 1Z999AA10123456784"
Validate an Address
"Is 1600 Pennsylvania Ave NW, Washington DC 20500 a valid address?"
Schedule a Pickup
"Schedule a pickup tomorrow at 9am for 3 packages at our warehouse"
Development
git clone https://github.com/roscoej/ups-mcp.git
cd ups-mcp
npm install
npm run buildTesting with MCP Inspector
npm run inspectorRunning locally
cp .env.example .env
# Edit .env with your credentials
npm run build
node dist/index.jsArchitecture
src/
├── index.ts # Entry point (stdio transport)
├── config.ts # Environment variable resolution
├── server.ts # MCP server factory
├── client/
│ ├── auth.ts # OAuth 2.0 token manager
│ ├── http.ts # HTTP client with retry + error handling
│ └── errors.ts # Structured error types
├── tools/
│ ├── tracking.ts # track_package
│ ├── shipping.ts # create_shipment, void_shipment
│ ├── rating.ts # get_rates, get_time_in_transit
│ ├── address.ts # validate_address
│ ├── pickup.ts # schedule_pickup, cancel_pickup
│ ├── locator.ts # find_locations
│ ├── builders.ts # Shared request payload builders
│ ├── constants.ts # UPS API codes and enumerations
│ └── schemas.ts # Zod input schemas
└── types/
├── config.ts # Server configuration
├── shipping.ts # Shipment types + service codes
├── tracking.ts # Tracking types
├── rating.ts # Rating types
├── address.ts # Address validation types
└── pickup.ts # Pickup typesSecurity
Your API credentials are sensitive. Never commit them to version control. Use environment variables or a secrets manager.
Disclaimer
This project is an independent, unofficial, third-party tool. It is not affiliated with, endorsed by, sponsored by, or in any way officially connected to United Parcel Service, Inc. (UPS) or any of its subsidiaries.
"UPS" and the UPS brandmark are registered trademarks of United Parcel Service of America, Inc. All other trademarks are property of their respective owners. Use of these names is for identification and interoperability purposes only and does not imply endorsement.
This software is provided "AS IS", without warranty of any kind. You are solely responsible for:
Complying with the UPS Technology Agreement and all applicable UPS terms of service, rate limits, and acceptable-use policies.
Securing your API credentials and UPS account.
All activity conducted through your UPS account via this tool.
Compliance with all applicable laws and regulations in your jurisdiction.
The authors and contributors accept no liability for damages arising from the use of this software or the UPS APIs accessed through it.
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/roscoej/ups-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server