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

agent-chef-mcp

v1.0.10

Published

Family meal planning run by your own AI agent: weekly dinners, household votes, grocery list minus the pantry. Stdio MCP server for the hosted Agent Chef service (https://agentchef.net/mcp).

Downloads

389

Readme

Agent Chef MCP server

Family meal planning run by your own AI agent. Every week your agent proposes ten dinners, the household votes and leaves feedback from personal links (no accounts), the top picks win, and Agent Chef builds the grocery list minus what's already in the pantry. Your agent fills the cart; you approve checkout.

  • Website & how it works: https://agentchef.net
  • Remote MCP endpoint (Streamable HTTP): https://agentchef.net/mcp
  • Official registry entry: net.agentchef/agent-chef

This repository is the public connector for the hosted service. The app itself runs at agentchef.net.

Connect

OAuth (Claude.ai, ChatGPT, Claude Desktop): add https://agentchef.net/mcp as a custom connector. The client discovers Agent Chef's authorization server, you sign in once and click Allow. No key needed.

API key (Claude Code, Cursor, Codex, scripts):

  1. Sign in at https://agentchef.net, create your household, and open Settings → Agents.
  2. Click Add to Claude / Add to ChatGPT / Claude Code / Cursor. You get an API key and exact steps for that agent.
  3. Tell your agent: “Run Agent Chef.” It calls run_agent_chef, receives the operating manual plus today's checklist, schedules itself to run twice a day, and takes it from there.

Manual configuration for any MCP client:

{
  "mcpServers": {
    "agent-chef": {
      "url": "https://agentchef.net/mcp",
      "headers": { "Authorization": "Bearer <your API key>" }
    }
  }
}

Clients that can't set headers can use https://agentchef.net/mcp?key=<your API key>. OAuth discovery lives at /.well-known/oauth-protected-resource and /.well-known/oauth-authorization-server.

Running locally over stdio

For clients that only speak stdio (and for directories that build servers in a container), this repo is a small Node MCP server. It ships the full tool catalog, so initialize, tools/list and prompts/list work offline; tool calls run on the hosted service for the household identified by AGENT_CHEF_API_KEY.

npx -y agent-chef-mcp                          # or: git clone … && npm install && npm start
AGENT_CHEF_API_KEY=ac_... node server.js

Docker:

docker build -t agent-chef-mcp .
docker run -i -e AGENT_CHEF_API_KEY=ac_... agent-chef-mcp

Client config for stdio:

{
  "mcpServers": {
    "agent-chef": {
      "command": "npx",
      "args": ["-y", "agent-chef-mcp"],
      "env": { "AGENT_CHEF_API_KEY": "ac_..." }
    }
  }
}

Without a key the server still lists everything; tool calls return a message explaining where to get a key. npm run sync refreshes catalog.json from the live server; npm test runs a stdio smoke test.

Tools (37)

| Area | Tools | |---|---| | Run loop | run_agent_chef, next_actions, get_instructions, record_schedule, dismiss_setup_checklist | | Access | get_connected_agents, revoke_connected_agent | | Preferences | get_recipe_preferences, update_recipe_preferences | | Household | get_members, upsert_member, remove_member | | Pantry | get_ingredients, update_ingredients | | Recipes | search_recipes, get_recipe, update_recipe, import_recipe, import_recipes, create_recipe, set_recipe_image, get_favorite_recipes, favorite_recipe, get_past_recipes | | Weekly cycle | propose_recipes, add_candidates, message_group, add_vote, add_ballot_feedback, get_past_votes, get_current_week, set_this_weeks_recipes, reopen_voting, set_voting_deadline, rate_recipe | | Shopping | assemble_online_grocery_order, record_grocery_order |

Prompts: run_agent_chef (also weekly_cycle).

Privacy & terms

https://agentchef.net/privacy · https://agentchef.net/terms · [email protected]