Recipe Manager MCP Server
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., "@Recipe Manager MCP Servershow me my saved recipe"
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.
Recipe Manager MCP Server
A FastMCP server built with FastAPI that serves a recipe editing web page and exposes recipe data via MCP tools. Recipes are stored in a JSON file.
Features
Web UI — Clean, responsive form for editing recipes at
/REST API —
GET /api/get-recipeandPOST /api/save-recipeMCP Tools —
get_recipeandsave_recipeexposed at/mcp/Persistent storage — Recipes saved to
recipes.json
Related MCP server: Mealie MCP Server
Quick Start
Running locally
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn server:app --host 0.0.0.0 --port 8000Running with Docker
docker build -t recipe-mcp .
docker run -d --name recipe-mcp-server -p 8000:8000 --rm recipe-mcpEndpoints
Endpoint | Method | Description |
| GET | Web UI for editing recipes |
| GET | Get the current recipe as JSON |
| POST | Save a recipe (JSON body with |
| POST | MCP Streamable HTTP transport endpoint |
MCP Tools
get_recipe— Retrieve the current recipesave_recipe— Save or update a recipe (params:name,ingredients,directions)
Project Structure
recipe-mcp/
├── Dockerfile
├── .dockerignore
├── .gitignore
├── README.md
├── data.py # Recipe I/O and Pydantic model
├── mcp_server.py # FastMCP tools definition
├── requirements.txt # Python dependencies
├── run.sh # One-command rebuild + restart
├── server.py # FastAPI app, routes, and entry point
└── templates/
└── web_page.html # Web UI templateRecipe data is persisted in a Docker named volume (recipe-data) and is not tracked by git.
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/magico13/recipe-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server