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

@striderlabs/mcp-usps

v1.0.0

Published

MCP server for USPS package tracking, location finding, and rate calculation

Downloads

132

Readme

@striderlabs/mcp-usps

MCP (Model Context Protocol) server for USPS package tracking, location finding, and shipping rate calculation using browser automation.

Features

  • Track packages — Get real-time status, location history, and estimated delivery for any USPS tracking number
  • Find locations — Locate nearby USPS post offices and collection boxes by ZIP code
  • Calculate rates — Get shipping rates for packages between ZIP codes

Installation

npm install -g @striderlabs/mcp-usps

Or use directly via npx:

npx @striderlabs/mcp-usps

Prerequisites

Playwright Chromium browser must be installed:

npx playwright install chromium

MCP Configuration

Add to your Claude Desktop or MCP client config:

{
  "mcpServers": {
    "usps": {
      "command": "npx",
      "args": ["@striderlabs/mcp-usps"]
    }
  }
}

Tools

track_package

Track a USPS package by tracking number.

Parameters:

  • tracking_number (string, required) — USPS tracking number (e.g. 9400111899223397556826)

Example:

Track package 9400111899223397556826

find_locations

Find USPS post offices and collection boxes near a ZIP code.

Parameters:

  • zip (string, required) — 5-digit ZIP code
  • type (string, optional) — post_office | collection_box | all (default: all)

Example:

Find post offices near 10001

calculate_rates

Calculate shipping rates between two ZIP codes.

Parameters:

  • from_zip (string, required) — Origin 5-digit ZIP code
  • to_zip (string, required) — Destination 5-digit ZIP code
  • weight_oz (number, required) — Package weight in ounces
  • length_in (number, optional) — Length in inches
  • width_in (number, optional) — Width in inches
  • height_in (number, optional) — Height in inches
  • mail_class (string, optional) — Service type: priority_mail | priority_mail_express | first_class | ground_advantage | media_mail (default: priority_mail)

Example:

Calculate shipping rates from 10001 to 90210 for a 16oz package

How It Works

This server uses Playwright to automate Chromium and scrape data directly from USPS.com tools:

  • Tracking: https://tools.usps.com/go/TrackConfirmAction
  • Locations: https://tools.usps.com/find-location.htm
  • Rates: https://postcalc.usps.com/

No USPS API key required.

License

MIT