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

@emile-wine/mcp-server

v0.2.5

Published

Émile wine cellar MCP server — query and manage your cellar from Claude Desktop, Cursor, or any MCP client. Supports stdio (npx local) and http (OAuth-protected remote) transports.

Readme

@emile-wine/mcp-server

Émile is your French wine cellar app. This MCP server lets you query and manage your cellar from Claude Desktop, Cursor, or any Model Context Protocol client.

npm

What it does

10 tools to talk to your Émile cellar:

| Tool | Description | |---|---| | search_wines | Search the catalog by name/producer/appellation | | list_cellars | List your cellars | | list_bottles | List bottles in a cellar | | add_bottle | Add 1 bottle | | add_bottles_batch | Add up to 100 bottles in one call | | update_bottle | Change status, notes, location, price, vintage, quantity | | delete_bottle | Remove a bottle (prefer update_bottle status=drunk for history) | | recommend_bottles | Get bottle recommendations for a meal or maturity | | scan_label | Identify a wine from a label photo (base64) | | scan_labels_batch | Up to 10 label photos in one call |

Quick start (Claude Desktop)

1. Get an API key

Open the Émile iOS app → Profile → Settings → API Keys → tap + Generate. Copy the emile_live_... value (shown only once).

2. Edit your Claude Desktop config

~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "emile": {
      "command": "npx",
      "args": ["-y", "@emile-wine/mcp-server"],
      "env": {
        "EMILE_API_KEY": "emile_live_xxxxxxxxxxxxxxxx"
      }
    }
  }
}

3. Restart Claude Desktop

You should see the 🔌 indicator in the bottom of the input box, with emile listed.

4. Try it

"Show me my main cellar" "Recommend a bottle for tonight's pasta with mushrooms" "Add a 2018 Pomerol to Cave A"

Configuration

| Env var | Required | Default | Description | |---|---|---|---| | EMILE_API_KEY | yes | — | API key from the iOS app | | EMILE_API_URL | no | https://api.emile.wine | Override for local dev (http://localhost:8000 allowed) | | EMILE_LOG_LEVEL | no | info | One of debug, info, warn, error |

Troubleshooting

"Émile API key is invalid or revoked" — Generate a new key in the iOS app. Old keys are revoked when you delete them or when global key rotation happens (rare).

"Cannot reach Émile API" — Check your internet connection. The default endpoint https://api.emile.wine should be reachable; you can verify with:

curl https://api.emile.wine/health

"Rate limit exceeded" — The MCP server inherits the API's rate limits (varies by endpoint, typically 10-60 req/min). Wait the suggested retry seconds.

Need to debug a tool call — set EMILE_LOG_LEVEL=debug in the config and check Claude Desktop's MCP logs at ~/Library/Logs/Claude/mcp*.log.

Privacy

This MCP server is stateless and doesn't persist anything. Your API key is read from env at startup. All requests go directly to https://api.emile.wine (or your override). Photo data sent to scan_label is processed transient by the backend (not stored). See https://api.emile.wine/privacy for the full policy.

Other MCP clients

The same npx -y @emile-wine/mcp-server invocation works in any client supporting stdio MCP servers:

  • Cursor~/.cursor/mcp.json
  • Continue~/.continue/config.json experimental.modelContextProtocolServer
  • Custom clients — connect to stdout/stdin, speak MCP

License

MIT — see LICENSE.