Mealie MCP Server — AI assistant integration for Mealie via Model Context Protocol #7630
amercat37
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Mealie MCP Server — AI assistant integration for Mealie via Model Context Protocol
I built this with assistance from Claude, using rldiao/mealie-mcp-server as the starting point. The original repository provided the foundation and concept, but I substantially rewrote and expanded it to meet my requirements. Credit to the original developer for the excellent starting point.
My use case was simple: I wanted to expose my Mealie instance to Claude and ChatGPT from outside my home network, which
meant I needed real authentication. The original used a static API key with no OAuth, so I added Authentik integration —
bearer token validation via OIDC discovery and JWKS. If you're not running Authentik or just want to use it locally, auth is opt-in and the server runs completely unauthenticated by default.
What it can do
duplicate existing ones for variations
What it intentionally can't do
Edit or delete existing recipes. New recipes can be added, but your existing library is read-only for edits. This limits
blast radius if the endpoint ever gets abused.
How it's deployed
Docker Compose, served over HTTP at /mcp, sitting behind a reverse proxy with TLS. Configure your MCP client to point at
https://your-host/mcp.
Repo
https://github.com/amercat37/mealie-mcp-server
All reactions