mealie-mcp
Provides a full-featured MCP server with 27 tools to manage recipes, shopping lists, meal plans, organizers, foods, and units via the Mealie API. Includes dietary guardrails, skills, agents, and slash commands for family-centered recipe management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mealie-mcpfind a healthy chicken recipe without seed oils"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mealie Plugin for Claude Code
A Claude Code plugin that bundles a full-featured Mealie MCP server (27 tools) with skills, agents, and commands for family-centered recipe management, homesteading cooking guidance, and dietary compliance.
Maintained by Thrivewell Partners
Features
27-tool MCP server — Direct access to Mealie's recipes, shopping lists, meal plans, organizers, foods, and units
5 Claude Code skills — Auto-activating knowledge libraries for recipe creation, Foundation recipes, dietary management, cooking tips, and meal planning
3 intelligent agents — Recipe advisor, meal planner, and cooking teacher — auto-triggered on relevant conversations
3 slash commands —
/mealie:quick-recipe,/mealie:weekly-menu,/mealie:find-recipeDietary guardrail hook — Scans ingredients for pork products and seed oils before any recipe is saved to Mealie
Family-aware defaults — Serves 6, mild heat, no pork, no seed oils throughout all components
Related MCP server: @mealmastery/mcp-server
Installation
As a Claude Code Plugin (Recommended)
1. Add the Marketplace
/plugin marketplace add https://github.com/thrivewell-partners/mealie-mcp2. Install the Plugin
/plugin install mealie@thrivewell-marketplace3. Set Environment Variables
export MEALIE_URL="https://your-mealie-instance.com"
export MEALIE_API_KEY="your-api-token"Get your API token: Mealie UI → User Profile → API Tokens → Generate
4. Restart Claude Code — MCP server and hooks load on startup.
Standalone MCP Server (Advanced / Development)
1. Install
git clone https://github.com/thrivewell-partners/mealie-mcp
cd mealie-mcp
uv pip install -e .2. Configure
# Create .env file with your Mealie credentials
echo "MEALIE_URL=https://your-mealie-instance.com" > .env
echo "MEALIE_API_KEY=your-api-token" >> .env3. Add to Claude Code MCP settings
In .claude/settings.json or your project's MCP config:
{
"mcpServers": {
"mealie": {
"command": "uv",
"args": ["run", "--directory", "/path/to/mealie-mcp", "mealie-mcp"],
"env": {
"MEALIE_URL": "https://your-mealie-instance.com",
"MEALIE_API_KEY": "your-api-token"
}
}
}
}Plugin Components
Skills (Auto-Activated)
Skills load automatically when you ask related questions — no command needed.
Skill | Trigger Phrases | Description |
| "add a recipe", "create a recipe for [dish]", "save this recipe to Mealie" | Structured Mealie v3 recipe authoring with family defaults |
| "foundation recipe", "the why behind the how", "educational recipe" | Educational Foundation recipe paradigm with full technique documentation |
| "check for dietary issues", "substitute the oil", "is this family-friendly" | Compliance checking, pork/seed-oil detection, substitution guidance |
| "how do I braise", "homesteading cooking", "what is fond", "how to render tallow" | Scratch cooking techniques with food science explanations |
| "plan meals for the week", "weekly menu", "what should we eat" | Weekly meal planning via Mealie API |
Agents
Agent | Color | Triggers | Role |
| Green | Recipe modification discussions, dietary evaluation, substitution requests | Read-only recipe consultant — evaluates and advises |
| Blue | "Plan the week's meals", "fill in the meal plan", multi-day meal requests | Drafts weekly menus, gets approval, creates Mealie entries |
| Cyan | "Teach me how to", technique questions, troubleshooting cooking failures | Explains the science and technique behind cooking methods |
Commands
Command | Usage | Description |
|
| Guided step-by-step recipe creation into Mealie |
|
| Plan a week of dinners, get approval, create Mealie entries |
|
| Search with dietary context and direct actions |
Dietary Guardrail Hook
A PreToolUse hook fires before every create_recipe and update_recipe MCP call. It uses a Claude prompt to scan the ingredients list for:
Pork products: bacon, ham, lard, prosciutto, pork sausage, chorizo, carnitas, and all variants
Seed oils: canola, vegetable, sunflower, safflower, corn, soybean, cottonseed, grapeseed, rice bran oils
If violations are found, Claude receives a warning with the specific ingredient names and suggested compliant alternatives. The operation is not blocked — Claude decides whether to correct and retry or proceed.
Family Dietary Guidelines
These rules are enforced by all plugin components:
NO PORK
No pork or pork-derived products. This includes: pork chops, bacon, ham, lard, prosciutto, pancetta, guanciale, salami, pepperoni, pork sausage, carnitas, pork ribs, pork belly, pork rinds, fatback.
NO SEED OILS
No industrially extracted seed or vegetable oils. Forbidden: vegetable oil, canola oil, sunflower oil, safflower oil, corn oil, soybean oil, cottonseed oil, grapeseed oil, rice bran oil, margarine.
Compliant fats: avocado oil · tallow · ghee · butter · olive oil · coconut oil · duck fat
SCALE FOR 6
Default all recipes to serve 6 people. Numeric servings field enables Mealie's scaling feature.
MILD TO MODERATE HEAT
Kid-friendly heat. Jalapeños seeded. No habaneros, scotch bonnets, or super-hot chilis.
MCP Server Tools (27)
Recipes
Tool | Description |
| Search by keyword with category/tag filters |
| Full recipe detail including ingredients, instructions, nutrition, notes |
| Ingredient list only |
| Import from URL (Mealie scrapes automatically) |
| Create manually with full structured content |
| Update any fields on an existing recipe |
| Permanently delete a recipe |
Shopping Lists
Tool | Description |
| List all shopping lists |
| View list with all items (checked/unchecked) |
| Create new empty list |
| Delete a list |
| Add item to a list |
| Remove item from a list |
| Check or uncheck an item |
| Add all recipe ingredients to a list |
Meal Plans
Tool | Description |
| View plans for a date range |
| Add entry (recipe or freeform) for a date |
| Remove an entry |
| Auto-fill date range with random recipes |
Organizers
Tool | Description |
| List all recipe categories |
| List all tags |
| List all cookbooks |
| Recipes in a specific cookbook |
| Create a new category |
| Create a new tag |
Foods & Units
Tool | Description |
| Search Mealie's foods database |
| List all measurement units |
Requirements
Python 3.11+
uv package manager
Mealie v3.0+ — self-hosted recipe manager
Claude Code with plugin support
Development
Run Tests
uv run pytestProject Structure
mealie-mcp/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── marketplace.json # GitHub Marketplace directory
├── src/mealie_mcp/ # MCP server source
│ ├── server.py # FastMCP app and tool registration
│ ├── client.py # Async Mealie API client (httpx)
│ ├── config.py # Pydantic settings (MEALIE_URL, MEALIE_API_KEY)
│ ├── formatting.py # Markdown output formatters
│ └── tools/ # Tool modules
│ ├── recipes.py # 7 recipe tools
│ ├── shopping.py # 8 shopping list tools
│ ├── mealplan.py # 4 meal plan tools
│ ├── organizers.py # 6 organizer tools
│ └── foods.py # 2 food/unit tools
├── skills/ # Claude Code skills
│ ├── recipe-creation/ # Mealie v3 recipe authoring
│ ├── foundations/ # Foundation recipe paradigm
│ ├── dietary-management/ # Compliance and substitutions
│ ├── cooking-tips/ # Homesteading techniques
│ └── meal-planning/ # Weekly planning workflow
├── agents/ # Claude Code agents
│ ├── recipe-advisor.md # Recipe evaluation and adaptation
│ ├── meal-planner.md # Weekly meal planning
│ └── cooking-teacher.md # Technique education
├── commands/ # Slash commands
│ ├── quick-recipe.md # Guided recipe creation
│ ├── weekly-menu.md # Weekly meal plan
│ └── find-recipe.md # Recipe search
├── hooks/
│ └── hooks.json # Dietary guardrail PreToolUse hook
├── tests/ # Test suite (pytest + respx)
├── .mcp.json # MCP server config (env var references)
└── pyproject.toml # Python project metadataLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thrivewell-partners/mealie-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server