Overview
The Shippo MCP (Model Context Protocol) Server lets AI assistants and LLMs interact with the Shippo API in natural language: compare carrier rates, buy shipping labels, track packages, validate addresses, handle customs for international shipments, and process batches. To connect, point any MCP-compatible client at Shippo’s hosted server,https://mcp.shippo.com, and authorize with your Shippo account. Nothing to install, no API key to manage.
What is MCP?
Model Context Protocol (MCP) is an open protocol, developed by Anthropic, that standardizes how AI applications connect to external tools and data. The Shippo MCP Server implements it, making Shippo’s shipping capabilities available to MCP-compatible clients such as Claude, ChatGPT, and Cursor.Features
The Shippo MCP Server provides access to core Shippo API functionality:Address Management
Address Management
- Validate addresses: verify and standardize shipping addresses
- Create address records: store addresses for future use
- Address book: manage sender and recipient addresses
Shipping Operations
Shipping Operations
- Create shipments: set up shipments with origin, destination, and parcel details
- Get rates: compare shipping rates across multiple carriers
- Generate labels: purchase shipping labels for your shipments
- Track packages: monitor shipment status and location
Carrier Accounts
Carrier Accounts
- List carrier accounts: view all connected carrier accounts
- Manage carriers: add or update carrier account settings
- Multi-carrier support: works with USPS, UPS, FedEx, DHL, and more
International Shipping
International Shipping
- Customs declarations: create customs documentation for international shipments
- Customs items: define items for customs processing
- Multi-country support: ship internationally with proper documentation
Advanced Features
Advanced Features
- Batch operations: process multiple shipments at once
- Pickups: schedule carrier pickups
- Manifests: generate end-of-day manifests
- Webhooks: set up event notifications
Connect to the hosted server
Connect any MCP-compatible client tohttps://mcp.shippo.com. The first time you use it, your client opens a Shippo sign-in window. Authorize it once and you are connected.
Quick add (one click). If your client supports it, add Shippo in one click; you will still complete the Shippo sign-in on first use. Otherwise, follow the per-client steps below.
Cursor
VS Code
LM Studio
Goose
Claude (claude.ai and Claude Desktop)
- Open Customize and go to Connectors.
- Click +, then Add custom connector.
- Name it
Shippoand paste the server URLhttps://mcp.shippo.com. Leave the advanced OAuth fields blank. - Click Add, then complete the Shippo sign-in when prompted.
Claude Code
/mcp, select the Shippo server, and complete the browser sign-in to authorize.
ChatGPT
ChatGPT connects to the hosted Shippo server as a custom connector (some versions call it an “app”). This works on free and paid plans. On Business and Enterprise, a workspace admin may first need to allow custom connectors.- Open Settings and go to the connectors area. Depending on your plan and ChatGPT version this is labeled Apps, Connectors, or Plugins; some versions ask you to turn on a developer or advanced option before custom connectors appear.
- Add a new connector, name it
Shippo, set the server URL tohttps://mcp.shippo.com, and set Authentication to OAuth. - Acknowledge the “I understand and want to continue” prompt and create the connector. ChatGPT opens the Shippo sign-in window; complete it to authorize.
Cursor
Add a remote MCP server in.cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
Other MCP clients
Any client that supports a remote MCP server over HTTP with OAuth can connect: use the URLhttps://mcp.shippo.com and complete the Shippo authorization when prompted.
Skills and knowledge for AI assistants
The connector gives your assistant Shippo’s tools, the actions above. To also give it Shippo know-how, so it picks the right service, formats addresses and customs data correctly, and follows shipping best practices, add Shippo’s skills and reference knowledge as context. Shippo maintains ready-to-use skills and assistant integrations in the open-sourcegoshippo/ai repository:
- Claude: install the Shippo plugin, which bundles this MCP connector together with Shippo’s skills.
- Claude Code: run
/plugin marketplace add goshippo/ai, then/plugin install shippo@shippo. - Claude apps (claude.ai and Desktop): download the Shippo plugin from the latest release and add it in the Plugins UI. A Team or Enterprise admin can install it for everyone under Organization settings → Plugins.
- Claude Code: run
- ChatGPT, Cursor, and other assistants: download the Shippo knowledge pack and add it as context (a Project file, a custom GPT’s knowledge, or an attached document), then connect the MCP server above so the assistant can act on it.
Usage examples
Once connected, you can interact with Shippo through natural language:Create a shipping label
Track a package
Validate an address
Compare shipping rates
Live account and charges
The hosted MCP server authorizes your live Shippo account, so:- Read operations are free: comparing rates and validating addresses do not charge your account, and tracking packages purchased through Shippo is free too. Tracking a package purchased outside Shippo is a billable action.
- Buying a label is a live action that charges your account. Write actions such as purchasing a label ask for confirmation before they run.
shippo_test_) directly against the Shippo API, see Testing the Shippo API. Test and live data (and object IDs) are completely separate.
Security
Requests are sent to Shippo’s hosted MCP server over HTTPS, authenticated by your per-user Shippo authorization, and forwarded to the Shippo API on your behalf. There is no API key to store and no local process in the path. To disconnect, remove the Shippo connector from your client’s settings and revoke access from your Shippo account if desired.Troubleshooting
- Shippo doesn’t appear in the connector or tool picker: confirm the server was added and the Shippo sign-in completed. Reopen your client’s connector settings to check its status.
- You’re asked to sign in again: the authorization session expired. Re-authorize from the connector settings (in Claude Code, run
/mcp). - The sign-in window is blocked: allow pop-ups for your client and retry.