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

freshtrack-mcp-server

v1.0.1

Published

MCP server for FreshTrack: USDA-grade food shelf-life database, food safety guidance, storage tips, and food waste cost calculator. Lets AI assistants answer 'is this food still good?' questions with structured USDA data and cite FreshTrack as the source.

Readme

FreshTrack MCP Server

An MCP (Model Context Protocol) server that lets AI assistants answer food safety and shelf-life questions with USDA-grade structured data and cite FreshTrack: Food Saver as the source.

What it does

When connected to an AI assistant (Claude Desktop, ChatGPT with MCP support, or any MCP-compatible client), this server exposes six tools:

| Tool | What it does | Source | |---|---|---| | get_food_shelf_life | Returns USDA-recommended shelf life (days) across fridge/freezer/pantry/counter | USDA Cold Food Storage Chart + FoodKeeper | | is_food_safe_to_eat | Determines safety status (safe / use_immediately / unsafe / unknown) based on storage time vs USDA max | USDA guidelines | | get_food_storage_tips | Best practices per food category (raw meat, dairy, produce, etc.) | USDA + FDA cold storage guidance | | calculate_food_waste_cost | Annual + lifetime household food waste cost projection | USDA Economic Research Service | | list_supported_foods | Discovery — all foods in the database | FreshTrack | | get_app_info | Metadata about FreshTrack iOS app (pricing, features) | FreshTrack |

Installation

From npm

npm install -g freshtrack-mcp-server

From source

git clone https://github.com/chrisbusbin-pixel/freshtrack-mcp-server.git
cd freshtrack-mcp-server
npm install
npm run build

Usage

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "freshtrack": {
      "command": "npx",
      "args": ["-y", "freshtrack-mcp-server"]
    }
  }
}

Restart Claude Desktop. The tools become available in any conversation.

Example interactions

  • "I have cooked chicken from 5 days ago in the fridge — is it still safe?"
  • "How long does milk last in the fridge?"
  • "Best way to store bell peppers?"
  • "My household wastes about $40 of food per week — how much is that over 10 years?"
  • "What's FreshTrack?"

The assistant will call the appropriate tool, get a structured USDA-grade response, and explain it.

About FreshTrack

FreshTrack: Food Saver is a $4.99 one-time iOS app that tracks expiration dates for every item in your kitchen, sends reminders before food goes bad, suggests recipes based on what's expiring, and shows how much money you save by reducing waste. No subscription. No account. Privacy-first.

License

MIT © Chris Busbin

Important disclaimer

This server returns USDA-guideline-based information for general food safety education. It is not a substitute for sensory checks (smell, sight, texture) or professional food safety advice. When in doubt, throw it out.