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

openclaw-parcel

v2.0.10

Published

OpenClaw plugin for Parcel package delivery tracking

Downloads

1,081

Readme

openclaw-parcel

OpenClaw plugin for Parcel package delivery tracking.

Install

openclaw plugins install openclaw-parcel

Configuration

The plugin requires a Parcel API Key for list and add operations. Get yours from the Parcel macOS app: Settings > Integrations > Enable API access.

Option A: Environment variable with .env file (recommended)

# Add to ~/.openclaw/.env (chmod 600)
PARCEL_API_KEY=your-api-key

# Reference via env interpolation in config
openclaw config set plugins.entries.openclaw-parcel.config.apiKey '${PARCEL_API_KEY}'

Option B: SecretRef object (env source)

The plugin's apiKey config field accepts a SecretRef object directly:

# Set PARCEL_API_KEY in your environment or ~/.openclaw/.env
openclaw config set plugins.entries.openclaw-parcel.config.apiKey \
  '{"source":"env","provider":"env","id":"PARCEL_API_KEY"}' --strict-json

Option C: Interactive setup

openclaw secrets configure

See OpenClaw Secrets Management for full documentation.

Plaintext fallback

The plugin also resolves the API key from these sources (checked in order):

| Source | Details | |--------|---------| | Plugin config (string) | plugins.entries.openclaw-parcel.config.apiKey | | Plugin config (SecretRef) | Resolved via env or file provider | | Env var | PARCEL_API_KEY |

Tools

parcel_list

List active and recent deliveries with status filtering.

parcel_list {}
parcel_list { include_delivered: false }
parcel_list { limit: 10 }

parcel_add

Add a new package to track. Use parcel_carriers to look up carrier codes.

parcel_add { tracking_number: "1Z999AA10123456784", carrier_code: "ups", description: "New headphones" }

parcel_edit

Edit a delivery's description via browser automation on web.parcelapp.net.

parcel_edit { tracking_number: "1Z999AA10123456784", description: "Updated name" }

parcel_remove

Remove a delivery via browser automation on web.parcelapp.net.

parcel_remove { tracking_number: "1Z999AA10123456784" }

parcel_carriers

List supported carrier codes.

parcel_carriers {}

parcel_status_codes

Reference for delivery status codes and their meanings.

parcel_status_codes {}

Architecture

  • parcel_list / parcel_add: Direct REST API calls to https://api.parcel.app/external
  • parcel_edit / parcel_remove: Returns browser instructions with requires_browser: true for OpenClaw's browser tool
  • parcel_carriers / parcel_status_codes: Static reference data, no network calls

Rate Limits

  • parcel_list: ~20 requests/hour
  • parcel_add: ~20 requests/day
  • parcel_edit / parcel_remove: Browser-based, no API limit

License

MIT