npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

parcel-tracking-mcp

v1.0.0

Published

MCP server for parcel tracking via the 17track API

Downloads

25

Readme

parcel-tracking-mcp

A Model Context Protocol (MCP) server that lets Claude (and any other MCP-compatible AI) track parcels worldwide via the 17track API.

Features

| Tool | Description | |------|-------------| | track_parcel | Register + fetch live tracking info for a single parcel | | track_multiple_parcels | Batch-track up to 40 parcels at once | | register_tracking | Register tracking numbers without fetching data | | stop_tracking | Stop monitoring parcels (conserves quota) | | delete_tracking | Permanently remove parcels from your account | | get_quota | Check your API quota usage |

Supports 2,400+ carriers including FedEx, UPS, DHL, USPS, Royal Mail, Amazon Logistics, and hundreds more.

Requirements

Installation

Option 1 — npx (no install needed)

SEVENTEEN_TRACK_API_KEY=your_key npx parcel-tracking-mcp

Option 2 — global install

npm install -g parcel-tracking-mcp
SEVENTEEN_TRACK_API_KEY=your_key parcel-tracking-mcp

Option 3 — build from source

git clone https://github.com/YOUR_USERNAME/parcel-tracking-mcp
cd parcel-tracking-mcp
npm install
npm run build
SEVENTEEN_TRACK_API_KEY=your_key npm start

Claude Desktop / Claude Code setup

Add this to your MCP config file.

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "parcel-tracking": {
      "command": "npx",
      "args": ["parcel-tracking-mcp"],
      "env": {
        "SEVENTEEN_TRACK_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Code (~/.claude/settings.json):

{
  "mcpServers": {
    "parcel-tracking": {
      "command": "npx",
      "args": ["parcel-tracking-mcp"],
      "env": {
        "SEVENTEEN_TRACK_API_KEY": "your_api_key_here"
      }
    }
  }
}

Getting a 17track API Key

  1. Sign up at 17track.net
  2. Go to API in your account dashboard
  3. Create an API key and copy it
  4. New accounts get 200 free tracking slots

Usage examples

Once connected, you can ask Claude things like:

"Track my parcel with tracking number 1Z999AA10123456784"

"Where are these packages? [list of tracking numbers]"

"Check the status of my FedEx shipment 449044304137821"

"How much API quota do I have left?"

Carrier codes

17track uses numeric carrier codes. You can usually omit the carrier and 17track will auto-detect it. Common codes:

| Carrier | Code | |---------|------| | FedEx | 100002 | | UPS | 100001 | | DHL Express | 100003 | | USPS | 100027 | | DHL eCommerce | 100116 | | Amazon Logistics | 100208 | | Royal Mail | 190021 |

See the full carrier list in the 17track docs.

Development

npm install
npm run dev   # runs with tsx (no build step)
npm run build # compile to dist/

License

MIT