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

@oldfamilyrecipe/mcp-server

v0.1.5

Published

MCP server for Old Family Recipe — save recipes from any AI assistant to your family cookbook

Downloads

623

Readme

@oldfamilyrecipe/mcp-server

An MCP server that lets Claude (and other MCP-compatible AI clients) create, read, search, and reason about recipes in your Old Family Recipe cookbook — including importing handwritten recipe cards from photos.

built on recipe:// npm

Works with Claude Desktop, Claude Code, Cursor, Cline, Windsurf, or any MCP-compatible client.

Quickstart

1. Get an API key at oldfamilyrecipe.com/settings/developer. Free tier: 100 calls/month.

2. Add to your MCP client config. For Claude Desktop, edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "oldfamilyrecipe": {
      "command": "npx",
      "args": ["-y", "@oldfamilyrecipe/mcp-server"],
      "env": { "OFR_API_KEY": "ofr_your_api_key_here" }
    }
  }
}

Same pattern for Cursor, Claude Code, Cline, Windsurf.

3. Restart your client and ask:

"Save my mom's stuffing recipe from this photo." (attach image)

Tools (13)

| Tool | What it does | |---|---| | recipe_create | Create a recipe with ingredients, instructions, source person, story, origin year. | | recipe_import_image | OCR a photo of a handwritten recipe card into a structured recipe (server-side Vision). | | recipe_list | List recipes in your cookbook. | | recipe_search | Search your cookbook by keyword, ingredient, or tag. | | recipe_update | Update an existing recipe. | | recipe_delete | Delete a recipe. | | sage_chat | Chat with Sage, your AI cooking companion who knows your family's recipes and preferences. | | sage_meal_plan | Ask Sage to plan your week's meals from your cookbook plus new ideas. | | meal_plan_get | Get your meal plan for a given week. | | meal_plan_update | Set meals for specific days and slots. | | shopping_list | Get the shopping list generated from your current meal plan. | | image_upload | Get a presigned URL to upload an image (recipe photo, card scan). | | family_invite | Invite a family member to your cookbook. |

Full protocol reference: oldfamilyrecipe.com/spec

Quota

Calls use the same monthly Sage budget as the web app:

  • recipe_import_image5 Sage actions per call (photo OCR is expensive)
  • sage_chat, sage_meal_plan1 Sage action each
  • Everything else — 1 call against the API-key budget

Free tier: 100 calls/month. Upgrade at oldfamilyrecipe.com/pricing.

No ANTHROPIC_API_KEY required on your side — Vision is handled server-side and billed against your Sage quota.

Examples

Once configured, talk to your AI naturally. It will pick the right tools:

Import a handwritten card:

"Save this recipe card — it's my grandma's from the 1960s." (attach photo) → calls recipe_import_image

Plan the week:

"Plan our dinners this week. Monday and Wednesday are busy, weekend is relaxed." → calls sage_meal_plan, then meal_plan_update

Shopping:

"What do I need from the store for this week's plan?" → calls shopping_list

Search:

"Find all the stuffing recipes in our cookbook." → calls recipe_search

Requirements

  • Node >= 18
  • An Old Family Recipe account + API key

Links

License

MIT — see LICENSE.