AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

MealMasteryAI Mcp Server

mcp-mealmasteryai-mcp-server · by MealMasteryAI

AI meal planning: generate weekly plans, manage recipes, and send groceries to Kroger.

— No reviews yet
0 installs
41 views
0.0% view→install

Install

$ agentstack add mcp-mealmasteryai-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.2.4 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.2.4. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-mealmasteryai-mcp-server)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ 5mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of MealMasteryAI Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

@mealmastery/mcp-server

MCP server for MealMastery AI meal planning. Integrates with Claude Desktop, VS Code Copilot, and other MCP-compatible AI agents.

Philosophy

The MCP server is a mirror of core capabilities, not a place where new features debut. Its value proposition is:

> "Everything you can do in the app, you can now do through natural conversation in Claude."

The MCP layer adds convenience (natural language) and composability (chaining tools), but the underlying capabilities exist in the core product first. New features should be built as API endpoints powering the web/mobile apps, then exposed through MCP -- never the other way around.

Setup

  1. Get your API key from MealMastery Settings
  2. Add to your Claude Desktop config (claude_desktop_config.json):
{
  "mcpServers": {
    "mealmastery": {
      "command": "npx",
      "args": ["-y", "@mealmastery/mcp-server"],
      "env": {
        "MEALMASTERY_API_KEY": "mm_live_..."
      }
    }
  }
}

Features

24 Tools

Full CRUD for meal planning, recipes, grocery lists, and user preferences -- plus AI generation with streaming progress.

3 Resources (read-only context)

| Resource URI | Description | |---|---| | mealmastery://meal-plan/current | Latest meal plan with all meals and nutrition | | mealmastery://user/preferences | Dietary preferences, allergies, skill level | | mealmastery://grocery-list/current | Grocery list for the current meal plan |

4 Prompt Templates (guided workflows)

| Prompt | Description | |---|---| | weekly-meal-prep | Full week planning: generate plan, review, grocery list, checkout | | swap-meal | Replace a meal in the current plan | | order-groceries | Preview and send grocery list to Instacart/Kroger | | quick-dinner | Single quick meal idea with time constraints |

Streaming & Progress

The generate_meal_plan tool supports MCP progress notifications. Clients that send a progressToken receive real-time updates during AI generation (0-100% progress with status messages). Clients without progress support gracefully fall back to the non-streaming endpoint.

Quota Awareness

API key quotas (daily request limits based on subscription tier) are reported on every token exchange. Free tier: 1,000 requests/day. Paid tier: 10,000 requests/day.

Available Tools

User Context

  • getusercontext - Load full user profile, preferences, subscription, and latest plan
  • getuserpreferences - Get dietary preferences and cooking settings
  • updateuserpreferences - Update dietary, allergy, or cuisine preferences
  • getsubscriptionstatus - Check subscription tier and usage limits
  • getcheckoutproviders - See connected grocery providers (Instacart, Kroger)
  • checkoutgrocerylist - Send a grocery list to Instacart or Kroger

Meal Planning

  • generatemealplan - Generate a personalized meal plan using AI (with streaming progress)
  • getlatestmeal_plan - Get the current/most recent meal plan
  • getmealplan - Get a specific meal plan by ID
  • listmealplans - Browse meal plan history
  • regenerate_meal - Replace one meal in a plan with a new AI-generated meal
  • generateandadd_meal - Add a new AI meal to a plan at a specific slot
  • remove_meal - Remove a meal from a plan

Recipes

  • search_recipes - Search saved recipes
  • get_recipe - Get full recipe details
  • savemealas_recipe - Save a generated meal as a reusable recipe
  • getfavoriterecipes - Get list of favorited recipes
  • favorite_meal - Mark a meal as favorite
  • getmealratings - Get ratings for meals in a plan
  • getallratings - Get all-time recipe ratings

Grocery

  • generategrocerylist - Create a grocery list from a meal plan
  • getgrocerylist - Get a specific grocery list
  • listgrocerylists - Browse grocery list history
  • updategroceryitems - Check off, exclude, or adjust grocery items

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | MEALMASTERY_API_KEY | Yes | - | Your developer API key (mm_live_...) | | MEALMASTERY_API_URL | No | https://api.mealmastery.ai | API base URL |

Security

  • API keys are exchanged for short-lived JWTs (15 min) -- never sent on data requests
  • HTTPS enforced for all non-localhost connections
  • Scope-based access control (read, write, checkout, admin)
  • Per-key daily quotas enforced server-side
  • Error messages sanitized -- no internal API details leak to the agent

Development

npm install
npm run build
npm start

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.2.4 Imported from the upstream source.