io.github.ni-c/mealie-mcp is an MCP server that MCP server for Mealie, the self-hosted recipe manager and meal planner. Its tool list has not been published yet over stdio and sse, requires no API key, and scores 61/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mealie": {
"env": {
"MEALIE_URL": "https://mealie.example.com",
"MEALIE_API_TOKEN": "…"
},
"args": [
"-y",
"@ni-c/mealie-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol server for Mealie, the self-hosted recipe manager and meal planner.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@ni-c/mealie-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @ni-c/mealie-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / entertainment
MCP server for Geargrafx PC Engine / TurboGrafx-16 emulator
The official MCP Server for the Mux API
MCP server for monday.com integration.
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for io.github.ni-c/mealie-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol server for Mealie, the self-hosted recipe manager and meal planner.
It gives a model a curated view of a Mealie instance: search and read recipes with their ingredients and steps, import new ones from a website, keep tags and categories tidy, plan meals, build shopping lists from those plans, and record what was actually cooked.
📖 Full documentation at mealie-mcp.ni-c.de

Mealie's REST API has 259 operations across 175 paths. This server exposes 52
tools, chosen so that the common tasks are one call and the dangerous surface is
not reachable at all. Verified against Mealie v3.22.0; the source of truth for
every request shape is the GET /openapi.json of a running instance, not the
published documentation, which is out of date in several places.
| Variable | Required | Description |
|---|---|---|
MEALIE_URL | yes | Base URL, e.g. https://mealie.example.com |
MEALIE_API_TOKEN | yes | Token from Settings → API Tokens. It acts as the user who created it. |
MEALIE_READ_ONLY | no | Exactly true registers the 17 read tools only |
MEALIE_ACCEPT_LANGUAGE | no | e.g. de-DE; localises unit and label names |
MEALIE_INSECURE_TLS | no | Exactly true accepts a self-signed certificate, scoped to this connection |
The two booleans are compared against the literal string true, so a typo leaves
them off — check the startup line on stderr, which reports the mode in effect.
The token is removed from the process environment once it has been read, so child
processes cannot pick it up out of /proc/<pid>/environ.
Claude Desktop, or any MCP client that takes a JSON config:
{
"mcpServers": {
"mealie": {
"command": "npx",
"args": ["-y", "
... [View full README on GitHub](https://github.com/ni-c/mealie-mcp#readme)