Shipboss MCP Server

An MCP server that provides shipping and logistics capabilities through AI conversations. Connect to FedEx, UPS, and DHL to get rates, create labels

Local serverstdioPython

What is the Shipboss MCP server?

Shipboss becomes available to MCP clients through the shipboss mcp server. An MCP server that provides shipping and logistics capabilities through AI conversations. Connect to FedEx, UPS, and DHL to get rates, create labels, track packages, and manage freight shipments.

What Shipboss does

An MCP server that provides shipping and logistics capabilities through AI conversations. Connect to FedEx, UPS, and DHL to get rates, create labels, track packages, and manage freight shipments.

Tools it exposes

Once connected, the assistant can call these 9 tools directly:

  • ping — Health check
  • get_parcel_rates — Get parcel shipping rates
  • create_parcel_label — Create parcel shipping labels with direct download URLs
  • track_parcel — Track parcel shipments
  • create_pickup — Schedule carrier pickups
  • cancel_pickup — Cancel scheduled pickups
  • get_freight_rates — Get freight shipping quotes
  • track_freight — Track freight shipments
  • Prerequisites — The Prerequisites tool exposed by this server

Installing the shipboss mcp server

The server is distributed via PyPI as shipboss-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: SHIPBOSS_API_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Python 3.9+ installed - ShipBoss account with API token (get one in the admin section at ship.shipboss.io)

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Shipboss sits in that group, and the shape of its toolset — ping, get_parcel_rates, create_parcel_label among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 9 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Shipboss.
  • Maintained by shipb, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the shipboss mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
pingHealth check
get_parcel_ratesGet parcel shipping rates
create_parcel_labelCreate parcel shipping labels with direct download URLs
track_parcelTrack parcel shipments
create_pickupSchedule carrier pickups
cancel_pickupCancel scheduled pickups
get_freight_ratesGet freight shipping quotes
track_freightTrack freight shipments
PrerequisitesThe Prerequisites tool exposed by this server.

How to install the Shipboss MCP server

#### Option C: Environment Variable
```json
{
  "mcpServers": {
    "shipboss-mcp": {
      "command": "C:\\path\\to\\shipboss_env\\Scripts\\python.exe",
      "args": ["C:\\path\\to\\shipboss-mcp\\shipboss_mcp_server.py"],
      "env": {
        "SHIPBOSS_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.9+ installed - ShipBoss account with API token (get one in the admin section at ship.shipboss.io)
VariableDescriptionRequired
SHIPBOSS_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Shipboss to ping.
  • Use Shipboss to get parcel rates.
  • Use Shipboss to create parcel label.

Frequently asked questions

It connects Shipboss to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (ping, get_parcel_rates, create_parcel_label, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Shipboss directly.