mealie-mcp
Provides tools for managing recipes, categories, tags, tools, foods, and units in a Mealie instance, enabling AI agents to read cookbooks, extract recipes, and store them in Mealie.
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-mcpimport the recipes from this PDF cookbook into my Mealie"
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 MCP Server
Docker-hosted MCP server for Mealie. It gives an AI agent the tools to read a cookbook (e.g. a PDF), extract the recipes (translating them if needed) and store them in Mealie — then verify its own work.
Built against Mealie API v3.19.2. Transport: SSE
(http://localhost:8001/sse) — persistent container, no subprocess spawning.
It deliberately covers only the endpoints that serve the cookbook → Mealie workflow (recipes, organizers, foods, units) plus read endpoints for verification. The rest of the Mealie API is intentionally omitted.
Prerequisites
Docker (with Compose)
A reachable Mealie instance
A Mealie API token (or a username/password)
Related MCP server: HowToCook-MCP Server
Generate an API token
In Mealie: avatar → Settings → API Tokens → Create (or
/user/profile/api-tokens). Copy the token — it is shown only once.
Quick Start
git clone https://github.com/NigelVanHattum/mealie-mcp.git
cd mealie-mcp
# Configure credentials
mkdir -p ~/.config/mealie-mcp
cat > ~/.config/mealie-mcp/config.json << 'EOF'
{
"base_url": "https://mealie.example.com",
"api_token": "your-api-token-here",
"verify_ssl": true
}
EOF
# Start the server
docker compose up -dThe server runs at http://localhost:8001. Verify:
curl http://localhost:8001/health
# {"status": "ok"}Connect to Claude
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"mealie": {
"url": "http://localhost:8001/sse"
}
}
}Restart Claude Desktop, then try: "Check my Mealie connection" → it calls
get_current_user.
Claude Code
claude mcp add mealie --url http://localhost:8001/sseConfiguration
Loaded in this order (first found wins):
Priority | Method | Details |
1 | Config file | Mount |
2 | Environment vars |
|
Variable | Required | Description |
| yes | Base URL, no trailing slash, e.g. |
| yes | Long-lived API token (sent as |
| no |
|
| no | Bind address / port (default |
The server authenticates to Mealie with API keys only — there is no username/password path.
Exposure & security
The MCP API itself is unauthenticated: /sse, /messages/ and /health
have no inbound auth. Anyone who can reach the port can call every tool —
including create_recipe, overwrite_recipe and delete_recipe — using the
server's Mealie API key.
So treat the server as a private backend: let Obot (or your MCP host) connect to it over localhost or a private/Docker network, and do not expose the port to the public internet. If it must traverse an untrusted network, put a reverse proxy with authentication in front of it. Transport is SSE; Streamable HTTP can be added if your host prefers it.
Recommended agent workflow
get_current_user— confirm the token works and note the active group.list_recipeswithsearch— check the recipe doesn't already exist.create_recipe— one call stores a full recipe. Translate fields to the target language (e.g. Dutch) before calling. Pass ingredients and instructions as plain strings; passcategories/tags/toolsas names (they are created automatically if missing).get_recipewith the returned slug — verify the stored content.
create_recipe and update_recipe merge onto the recipe's current state, so
they never wipe fields you didn't provide. When you want a clean re-import, use
overwrite_recipe instead: it replaces all recipe content explicitly —
every content field you omit is cleared (identity, settings and image are kept).
Tools Reference
Group | Tools |
App / verify |
|
Recipes |
|
Organizers |
|
Foods |
|
Units |
|
create_recipe — key fields
name (required), description, ingredients (string[]), instructions
(string[]), recipeYield, servings, prepTime, cookTime, totalTime,
categories (string[]), tags (string[]), tools (string[]), nutrition
(object), orgURL, extras (object).
Ingredients are stored as free text by default — ideal for cookbook imports.
For structured ingredients, pass an object per line
({quantity, unit, food, note}) and manage foods / units with their tools.
Development
pip install -e ".[dev]"
pytest
# Build image locally (tests run in the build stage — build fails if tests fail)
docker build -t mealie-mcp .
docker compose upAPI Reference
Interactive docs for your instance: https://<your-mealie>/docs ·
OpenAPI: https://<your-mealie>/openapi.json
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
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/NigelVanHattum/mealie-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server