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

@mattflower/feedme-mcp

v1.0.0

Published

MCP server for FeedMe meal planning application

Readme

FeedMe MCP Server

A Model Context Protocol (MCP) server for the FeedMe meal planning application. This server allows AI assistants like Claude Desktop to interact with FeedMe programmatically.

Features

Tools

  • search_meals - Search for meals by name, ingredient, or description
  • generate_recipe - Generate a new recipe using AI based on a description
  • add_recipe - Manually add a new recipe with all details
  • add_meal_to_plan - Add a meal to the current week's plan
  • get_shopping_list - Generate or retrieve the shopping list
  • check_item - Mark a shopping list item as purchased

Resources

  • meals://list - List of all available meals
  • plans://current - Current weekly meal plan
  • shopping://list - Current shopping list

Installation

For Claude Desktop

Add the following to your Claude Desktop configuration file:

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

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "feedme": {
      "command": "npx",
      "args": ["-y", "@mattflower/feedme-mcp"],
      "env": {
        "FEEDME_API_KEY": "your-api-key-here",
        "FEEDME_API_URL": "http://localhost:8080"
      }
    }
  }
}

Environment Variables

  • FEEDME_API_KEY (required) - Your FeedMe API key. Create one in FeedMe Settings.
  • FEEDME_API_URL (optional) - URL of your FeedMe instance. Defaults to http://localhost:8080.

Getting an API Key

  1. Log in to your FeedMe instance
  2. Go to Settings
  3. Under "API Keys", click "Create API Key"
  4. Give it a name (e.g., "Claude Desktop")
  5. Copy the key immediately - you won't be able to see it again!

Usage Examples

Once configured, you can ask Claude to:

  • "Search for chicken recipes in FeedMe"
  • "Generate a quick weeknight pasta recipe"
  • "Add Chicken Stir Fry to Wednesday dinner"
  • "What's on my meal plan this week?"
  • "Generate my shopping list"
  • "Mark milk as purchased"

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally
FEEDME_API_KEY=your-key npm start

License

MIT