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

loadingmcp-mcp

v0.1.0

Published

Container & truck load-planning MCP server — compute optimal 3D load plans, suggest a container mix, and list equipment with internal dimensions and payloads. Works with Claude, Cursor, and any MCP client.

Readme

LoadingMCP — Container & Truck Load-Planning MCP Server

Plan optimal container and truck loads straight from your AI client (Claude, Cursor, Windsurf, or any MCP client): 3D load plans, right-sizing to the cheapest equipment that fits, volume and payload utilization, centre of gravity, crush & securing checks, VGM / axle figures, and per-retailer inbound-packaging checks.

A sister product to TrackingMCP and SchedulesMCP. Load plans come from a real bin-packing engine — drums and pipes hex-nest, big bags and sacks load on top and are never crushed, hazmat classes drive IMDG segregation.

This repo is the public MCP server for loadingmcp.com. It runs as a remote Streamable HTTP server; you don't need to host it. Use the public demo key to try it with no signup.

Tools

| Tool | What it does | |---|---| | list_equipment | List container / truck / ULD / pallet types with internal dimensions (mm) and max payload (kg) | | suggest_containers | Quick volume + weight estimate of how many of which container to use | | plan_load | 3D load plan: equipment used, utilization %, centre of gravity, crush violations, securing checklist (auto right-sizes when no equipment is given) | | export_plan | Machine-readable loading work order: numbered stuffing sequence, securing actions, VGM / axle / CoG figures, optional retailer (Amazon FBA / Walmart) checks |

For 200+ equipment types and the production PackingSolver optimizer, use a real API key from loadingmcp.com/mcp. The public demo key returns clearly-labelled synthetic plans from an offline preview packer.

Connect

Claude Desktop

{
  "mcpServers": {
    "container-loading": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.loadingmcp.com/mcp",
               "--header", "Authorization: Bearer YOUR_API_KEY"]
    }
  }
}

Cursor / Windsurf / VS Code (native HTTP MCP)

{
  "mcpServers": {
    "container-loading": {
      "url": "https://mcp.loadingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}

Replace YOUR_API_KEY with a key from loadingmcp.com/mcp, or use the public demo key lmcp_demo_public for synthetic demo load plans (no signup). Don't add "type": "streamable-http" — Claude Desktop rejects unknown config fields; Cursor/Windsurf infer transport from url.

Truthfulness

Demo output is synthetic and clearly labelled. export_plan is decision support to help you MEET published retailer/carrier specs — verify in your own portal; it is not a retailer certification.

Endpoint

  • Remote: https://mcp.loadingmcp.com/mcp
  • Health: https://mcp.loadingmcp.com/health

Links

License

MIT