mealie-mcp
Provides tools for interacting with Mealie's REST API, enabling AI agents to manage recipes, meal plans, shopping lists, cookbooks, households, users, and other features of the Mealie self-hosted recipe manager.
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-mcpShow me my shopping list."
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
A Model Context Protocol (MCP) server for Mealie, the self-hosted recipe manager, meal planner and shopping-list app.
It exposes every endpoint of the Mealie REST API as an MCP tool, so an LLM (Claude, etc.) can read and manage your recipes, meal plans, shopping lists, cookbooks, households, users and more.
🧩 Complete API coverage — one tool per Mealie endpoint (~259 tools).
🔄 Auto-adapts to your Mealie version — on startup it fetches the OpenAPI schema from your instance, so the tools always match exactly what your server supports. A bundled snapshot is used as a fallback if the fetch fails.
🚀 Zero install — runs straight from
npx, ideal for MCPHub, Claude Desktop, Cursor, and any other MCP client.🔒 Safe by default options — read-only mode and per-category include/exclude filtering for clients that prefer fewer tools.
Quick start
You need two things:
The base URL of your Mealie instance, e.g.
https://mealie.example.comA Mealie API token (see Getting an API token)
Run it with npx:
MEALIE_BASE_URL="https://mealie.example.com" \
MEALIE_API_TOKEN="your-long-lived-token" \
npx -y mealie-mcpThe server speaks MCP over stdio, so you normally won't run it by hand — your MCP client launches it for you using the config below.
Related MCP server: Mealie MCP Server
Client configuration
MCPHub / Claude Desktop / Cursor (generic MCP config)
Add an entry to your client's MCP servers config (for Claude Desktop this is
claude_desktop_config.json; MCPHub uses an equivalent mcpServers block):
{
"mcpServers": {
"mealie": {
"command": "npx",
"args": ["-y", "mealie-mcp"],
"env": {
"MEALIE_BASE_URL": "https://mealie.example.com",
"MEALIE_API_TOKEN": "your-long-lived-token"
}
}
}
}That's the only required configuration. Everything else is optional tuning.
Getting an API token
In Mealie:
Click your user avatar → Manage Your Profile.
Open the API Tokens section (
/user/profile/api-tokens).Create a token, give it a name, and copy it.
The token inherits the permissions of the user that created it, so create it
under a user/household with the access you want the LLM to have. To give the
model read-only-ish safety, also see MEALIE_READ_ONLY.
Configuration
All configuration is via environment variables.
Variable | Required | Default | Description |
| ✅ | — | Base URL of your Mealie instance, e.g. |
| – | — | Long-lived Mealie API token (sent as |
| – |
| When |
| – | — | Comma-separated allow-list of tool names or category prefixes to expose (e.g. |
| – | — | Comma-separated deny-list of tool names or category prefixes to hide (e.g. |
| – |
| Skip the live OpenAPI fetch and use the snapshot bundled with the package. |
| – |
| Override where the OpenAPI schema is fetched from. |
| – |
| Max length of generated tool names (clamped to 16–64). Lower it if your MCP client prefixes tool names (e.g. |
| – |
| Per-request timeout in milliseconds. |
| – | — | Optional |
Reducing the number of tools
Mealie has ~259 endpoints. Some MCP clients work better with fewer tools.
Use MEALIE_TOOLS / MEALIE_EXCLUDE_TOOLS with category prefixes (the part
before the verb in a tool name) to narrow things down. Examples:
# Only recipes, meal plans and shopping lists:
MEALIE_TOOLS="recipe,households_mealplans,households_shopping"
# Everything except admin + group seeders:
MEALIE_EXCLUDE_TOOLS="admin,groups_seeders,groups_migrations"
# Read-only recipe browsing assistant:
MEALIE_READ_ONLY=true
MEALIE_TOOLS="recipe,explore"How tools are named
Each tool name is derived from the Mealie OpenAPI tag (category) and operation.
Uniquely-named operations use their bare operation name (e.g. suggest_recipes);
operations whose name is reused across resources (the CRUD verbs get_all,
get_one, create_one, update_one, delete_one, …) are prefixed with their
category to stay unique and to keep them grouped. All names are kept well under
the 64-character tool-name limit. For example:
Tool | Method & path |
|
|
|
|
|
|
|
|
|
|
|
|
Each tool's input schema declares its path parameters, query parameters and
(where relevant) a body object — all generated directly from Mealie's OpenAPI
schema, so the model gets accurate, fully-typed arguments.
File uploads
Endpoints that upload files (recipe images, ZIP imports, backups, assets, …) take their file fields as absolute paths to local files, which the server reads and sends as multipart form data. The tool description tells the model which fields are file paths.
Troubleshooting: "name: String should have at most 64 characters"
Some MCP clients/hubs (e.g. MCPHub, remote connectors) prefix every tool name
with the server name — mcp__<server>__<tool> — and the combined string
must stay within the API's 64-character limit. If you hit this error:
Keep the server's name/alias short (
mealieis ideal).Lower the tool-name cap, e.g.
MEALIE_TOOL_NAME_MAX=30, until it fits.The error is global — Claude rejects the whole tool list if any tool (from any server) is too long, so the culprit may be a different server.
Categories
Category | Tools |
| 3 |
| 4 |
| 6 |
| 1 |
| 2 |
| 5 |
| 5 |
| 5 |
| 7 |
| 3 |
| 2 |
| 2 |
| 2 |
| 2 |
| 3 |
| 2 |
| 2 |
| 2 |
| 4 |
| 2 |
| 1 |
| 5 |
| 3 |
| 3 |
| 6 |
| 6 |
| 6 |
| 3 |
| 5 |
| 7 |
| 6 |
| 7 |
| 8 |
| 9 |
| 7 |
| 7 |
| 7 |
| 6 |
| 8 |
| 6 |
| 23 |
| 2 |
| 5 |
| 2 |
| 2 |
| 6 |
| 6 |
| 6 |
| 4 |
| 5 |
| 6 |
| 1 |
| 2 |
| 5 |
| 1 |
| 2 |
| 1 |
Development
git clone https://github.com/2fst4u/mealie-mcp.git
cd mealie-mcp
npm install
npm run build # compile TypeScript to dist/
npm test # run the test suite (node:test)
npm run typecheck # type-check without emitting
# Run from source against a Mealie instance:
MEALIE_BASE_URL="https://demo.mealie.io" npm run devUpdating the bundled OpenAPI snapshot
The server prefers the live schema from your own instance, but the bundled snapshot (used as a fallback) can be refreshed from any Mealie instance:
npm run refresh-spec -- https://demo.mealie.ioProject layout
Path | Purpose |
| Entry point: load config + spec, start stdio server. |
| Environment-variable configuration. |
| Fetch live OpenAPI schema with bundled fallback. |
| Generate one MCP tool per OpenAPI operation. |
| Build self-contained JSON Schemas ( |
| Execute requests (JSON / urlencoded / multipart / binary). |
| MCP server wiring ( |
| Bundled fallback OpenAPI schema. |
Releases & publishing
This repo ships two GitHub Actions workflows:
CI (
.github/workflows/ci.yml) — runs type-check, build and tests on every pull request (and on non-mainbranch pushes) across Node 18/20/22.Release (
.github/workflows/release.yml) — on every push/merge tomain, builds and tests, then creates a GitHub Releasev<version>(with auto-generated notes) and publishes to npm if that version hasn't been released yet. To cut a release, bumpversioninpackage.jsonin your PR; merging it ships the release.
Publishing to npm (Trusted Publishing / OIDC)
The release workflow publishes via npm Trusted Publishing, so there is no
NPM_TOKEN secret to store — GitHub Actions authenticates to npm with a
short-lived OIDC token, and npm generates build provenance automatically.
npm requires a package to exist before you can attach a Trusted Publisher, so there is a one-time bootstrap for the first ever publish:
Publish the first version manually from your machine (this also claims the package name):
npm install # ensure deps npm login # your normal npm account + 2FA npm publish --access publicConfigure the Trusted Publisher on npmjs.com: open the package page → Settings → Trusted Publisher → GitHub Actions, and enter:
Organization or user:
2fst4uRepository:
mealie-mcpWorkflow filename:
release.ymlEnvironment: (leave blank)
From then on, every merge to
mainwith a bumped version publishes automatically over OIDC — no tokens, no manual steps.
Requirements (handled by the workflow):
id-token: writepermission, Node ≥ 22.14, and npm ≥ 11.5.1. The publish step safely skips if the version is already on npm, so re-runs and the bootstrap version won't cause failures.
License
This project is an independent client for Mealie and is not affiliated with the Mealie project.
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/2fst4u/mealie-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server