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

cellartracker-mcp

v0.3.0

Published

MCP server for CellarTracker wine cellar data — inventory, drinking recommendations, purchase history, and wishlist

Readme

CellarTracker MCP

Connect Claude to your CellarTracker wine cellar. Query your inventory, get drinking recommendations, analyze purchases, and evaluate new wines — all through natural conversation.

Install

Two install methods cover different Claude Desktop modes. You may need one or both:

| | Desktop Extension (.mcpb) | Claude Code Plugin | |---|---|---| | Works in | Chat, Cowork | Cowork, Code | | Tools | 8 cellar tools | All 10 tools (includes setup-credentials and clear-user-data) | | Skills | No | Yes | | Setup | One-click download | Marketplace or CLI | | Credentials | Prompted on install, stored in OS keychain | Run setup-credentials after install |

Which do I need?

  • Chat only → Desktop Extension
  • Code only → Claude Code Plugin
  • Cowork only → Either works (plugin adds skills)
  • Full coverage → Install both — no conflicts

Installing both is safe. The extension covers Chat; the plugin covers Cowork and Code. In Cowork, both are accessible without conflict.

Desktop Extension (Chat & Cowork)

One-click install. No terminal needed.

  1. Download cellartracker-mcp.mcpb from the latest release
  2. Double-click the file to install in Claude Desktop
  3. Enter your CellarTracker username and password when prompted
  4. Start chatting — "What wines should I open this week?"

Credentials are stored in your OS keychain (macOS Keychain / Windows Credential Manager). To update them later, go to Settings > Extensions > CellarTracker.

Claude Code Plugin (Cowork & Code)

Full experience with tools and skills.

Via Desktop app

  1. Open the Code tab > Customize > Browse plugins > + > Add marketplace from GitHub > enter slavins-co/cellartracker-mcp
  2. Find "CellarTracker MCP" in the plugin browser and click Install
  3. Set up credentials immediately — say: "Set up my CellarTracker credentials"

Via terminal

Step 1: Add the marketplace

/plugin marketplace add slavins-co/cellartracker-mcp

Step 2: Install the plugin

/plugin install cellartracker-mcp@cellartracker-mcp

Step 3: Set up credentials immediately — say:

"Set up my CellarTracker credentials"

Claude will verify and save them. No restart needed. Without credentials, tools will return errors and skills won't have data to work with.

Alternative: Set CT_USERNAME and CT_PASSWORD as environment variables in your shell profile.

Credentials are stored only on your machine. When using the setup tool, they pass through Anthropic's servers as part of the conversation. They are sent to CellarTracker's servers for authentication.

What you can do

| Tool | What it does | |------|-------------| | setup-credentials | Connect your CellarTracker account (Claude Code plugin only — Desktop Extension handles credentials during install) | | search-cellar | Find wines by name, color, region, varietal, location, or vintage | | drinking-recommendations | Wines to open now, sorted by drinking window urgency | | cellar-stats | Collection overview — totals and breakdowns by any dimension | | purchase-history | Spending analysis by store, date range, or wine | | get-wishlist | Your wishlist with ratings, notes, and prices | | consumption-history | Wines you've opened — by name, color, or date range | | tasting-notes | Your tasting notes and reviews with ratings and scores | | refresh-data | Force a fresh pull (auto-refreshes every 24 hours) | | clear-user-data | Remove stored credentials and cached data from this machine (Claude Code plugin only) |

Included skills

Note: Skills are available in Cowork and Code modes via the Claude Code plugin. Chat mode (Desktop Extension) provides tools only.

cellartracker-data — Teaches Claude to interpret CellarTracker data: table relationships, score abbreviations, drinking windows, and query routing.

wine-purchase-evaluator — Framework for evaluating wine purchases. Two-score system (Quality + Personal Fit) with BUY/CONSIDER/PASS verdicts. Checks your cellar for redundancy, verifies pricing, and applies drinking window discipline.

To customize the evaluator for your preferences, copy skills/wine-purchase-evaluator/references/preferences-example.md to preferences.md in the same directory and edit it.

How it works

CellarTracker has no official API. This server uses their CSV export endpoint, which authenticates with your username and password over HTTPS. Data is cached locally and auto-refreshes every 24 hours.

The server can only access your data — inventory, purchases, notes, and wishlist. It cannot search CellarTracker's full wine database.

Security & credentials

CellarTracker API limitations

CellarTracker has no OAuth, API keys, or scoped tokens. Authentication requires your actual account username and password, sent as URL query parameters over HTTPS. While encrypted on the wire, query parameters are routinely logged in server-side access logs on CellarTracker's infrastructure. There is no way to create read-only or limited-access credentials — this MCP only performs read operations, but it authenticates with your full account.

How this server protects your credentials

| Protection | Details | |---|---| | File permissions | Config directory 0700, .env file 0600 — only your OS user can read | | Error stripping | Network errors are caught and re-thrown without the URL, which contains credentials | | No logging | Credentials never appear in stdout, stderr, or error messages | | OS keychain | Desktop Extension (.mcpb) stores credentials in macOS Keychain / Windows Credential Manager | | Env var support | Set CT_USERNAME / CT_PASSWORD environment variables to avoid storing credentials on disk |

The Claude Code plugin stores credentials as plaintext in ~/.config/cellartracker-mcp/.env. We evaluated OS keychain integration (#22) and decided against it — the native dependency cost (node-gyp / keytar) outweighs the security benefit for wine cellar data, and the Desktop Extension path already uses the OS keychain.

Recommendations

  • Use a unique password for CellarTracker — do not reuse a password from other services.
  • Prefer environment variables over the setup-credentials tool if you want to avoid persisting credentials to disk.
  • Pin to a specific version in your MCP config (e.g., [email protected]) rather than relying on @latest.

Development

For contributors or anyone who wants to run from source:

git clone https://github.com/slavins-co/cellartracker-mcp.git
cd cellartracker-mcp
npm install
npm run build

# Set credentials
cp .env.example .env
# Edit .env with your CT login

# Test as Claude Code plugin
claude --plugin-dir .

License

MIT