AI-powered multi-carrier shipping management for Claude Desktop, Claude Code, and any MCP-compatible AI client. Ship packages, compare rates, manage addresses, and track shipments — all through natural conversation with AI. Talk to your AI assistant naturally: - "List my recent shipments" - "Get FedEx and UPS rates for a 5lb package from NYC to LA" - "Create a shipment using my primary FedEx accou
Add this skill
npx mdskills install aarsiv-groups/shipi-mcp-serverComprehensive multi-carrier shipping MCP with 18 well-organized tools and clear setup docs
1# Shipi MCP Server23AI-powered multi-carrier shipping management for [Claude Desktop](https://claude.ai/download), [Claude Code](https://docs.anthropic.com/en/docs/claude-code), and any MCP-compatible AI client.45Ship packages, compare rates, manage addresses, and track shipments — all through natural conversation with AI.67## What You Can Do89Talk to your AI assistant naturally:1011- *"List my recent shipments"*12- *"Get FedEx and UPS rates for a 5lb package from NYC to LA"*13- *"Create a shipment using my primary FedEx account"*14- *"Track package 794987330490"*15- *"Add a new shipper address for our LA warehouse"*16- *"Show me shipping stats for this month"*17- *"What's my account balance?"*1819## 18 Tools Available2021| Category | Tools |22|----------|-------|23| **Shipments** | `list_shipments`, `get_shipment`, `search_shipments`, `create_shipment`, `cancel_shipment` |24| **Rates** | `get_shipping_rates` — compare live rates across all carriers |25| **Pickup** | `schedule_pickup` — schedule carrier pickup at your location |26| **Tracking** | `track_shipment` — get tracking URL with auto carrier detection |27| **Labels** | `fetch_labels` — retrieve labels for printing |28| **Address Book** | `list_addresses`, `get_address`, `add_address`, `edit_address`, `delete_address` |29| **Carriers** | `list_carriers`, `get_carrier` — view configured carrier accounts |30| **Account** | `get_account_info`, `get_shipping_stats` — billing, plan, analytics |3132## Supported Carriers3334FedEx, UPS, USPS, DHL, DHL Express, Canada Post, Purolator, Canpar, Aramex, BlueDart, Delhivery, DTDC, Ecom Express, Australia Post, and more.3536## Quick Setup3738### 1. Get Your Integration Key3940Log in to [Shipi Dashboard](https://app.myshipi.com) → **Settings** → **General** → copy your **Integration Key**.4142### 2. Install4344**Option A: Install from npm (recommended)**4546```bash47npm install -g shipi-mcp-server48```4950**Option B: Clone and install locally**5152```bash53git clone https://github.com/aarsiv-groups/shipi-mcp-server.git54cd shipi-mcp-server55npm install56```5758### 3. Configure Claude Desktop5960Open Claude Desktop → Settings → Developer → Edit Config, and add:6162```json63{64 "mcpServers": {65 "shipi": {66 "command": "npx",67 "args": ["shipi-mcp-server"],68 "env": {69 "SHIPI_INTEGRATION_KEY": "your_integration_key_here"70 }71 }72 }73}74```7576**If installed locally**, use the full path instead:7778```json79{80 "mcpServers": {81 "shipi": {82 "command": "node",83 "args": ["C:/path/to/shipi-mcp-server/index.js"],84 "env": {85 "SHIPI_INTEGRATION_KEY": "your_integration_key_here"86 }87 }88 }89}90```9192### 4. Restart Claude Desktop9394Close and reopen Claude Desktop. You should see the Shipi tools available (hammer icon).9596## Configuration9798| Environment Variable | Required | Description |99|---------------------|----------|-------------|100| `SHIPI_INTEGRATION_KEY` | Yes | Your Shipi integration key |101| `SHIPI_BASE_URL` | No | API base URL (default: `https://app.myshipi.com`) |102103## Example Conversations104105### Compare shipping rates106> **You:** I need to ship a 3lb package from New York (10001) to Los Angeles (90001). What are my options?107>108> **Claude:** Let me check rates across your carriers... *[calls get_shipping_rates]*109>110> FedEx Ground: $12.50 (5-7 days), UPS Ground: $11.80 (5-7 days), FedEx Express: $28.90 (2 days)...111112### Create a shipment113> **You:** Ship it with FedEx Ground114>115> **Claude:** I'll need the recipient details. What's the recipient name and full address?116>117> **You:** Jane Doe, 456 Oak Ave, Los Angeles CA 90001118>119> **Claude:** *[calls create_shipment]* Shipment created! Tracking: 794987330490, Label: [download link]120121### Track packages122> **You:** Where is order ORD-1234?123>124> **Claude:** *[calls search_shipments]* Found it — shipped via FedEx, tracking 794987330490. *[calls track_shipment]* Track here: https://track.myshipi.com/?no=794987330490125126## Requirements127128- [Node.js](https://nodejs.org/) 18 or higher129- A [Shipi](https://myshipi.com) account with at least one carrier configured130- [Claude Desktop](https://claude.ai/download) or any MCP-compatible AI client131132## Security133134- Your integration key is stored locally on your machine (never sent to third parties)135- The MCP server only communicates with Shipi's API (`app.shipi.xyz`)136- Carrier API credentials are **never** exposed through the MCP tools137- All API calls use HTTPS138139## Links140141- [Shipi Website](https://myshipi.com)142- [Shipi Dashboard](https://app.myshipi.com)143- [API Documentation](https://resources.myshipi.com/category/general/api-reference/)144- [Support](mailto:support@myshipi.com)145146## License147148MIT149
Full transparency — inspect the skill content before installing.