foodmcp
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., "@foodmcpWhat can I cook with chicken and rice?"
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.
Food MCP Server + Agent
A two-stage AI project: an MCP server exposing cooking/recipe tools backed by the Spoonacular API, and a Gemini-powered agent built on top of it that answers natural-language cooking questions by calling those tools.
Why MCP here
Rather than gluing an LLM directly to a food API with custom prompt-stuffed context, MCP exposes each capability as a typed, documented tool that any compliant client (Claude Desktop, a custom agent, etc.) can discover and call on its own.
The model decides when to call search_recipes_by_ingredients vs. get_ingredient_substitutes based on the tool descriptions — it isn't hardcoded into a single prompt.
Related MCP server: cookwith-mcp
Tools
Tool | Purpose |
| Natural-language recipe search with diet/cuisine/time filters |
| "What can I cook with what I have" |
| Full recipe: ingredients, steps, image, source |
| Calorie and macro/nutrient breakdown for a recipe |
| Suggested swaps for an ingredient you don't have |
These five were chosen deliberately (over exposing Spoonacular's full endpoint list) so they compose well for an agent: e.g. "find a vegetarian recipe from these ingredients, show me the nutrition, and suggest a substitute for the one thing I'm missing" chains three of these tools naturally.
Setup
pip install -r requirements.txt
cp .env.example .env
# edit .env and add your free Spoonacular API keyRun the server on its own
python server.pyThis starts the server over stdio, the standard transport for local MCP clients. You don't need to do this before running the agent below — it's only useful for testing the server in isolation.
Test the server with the MCP Inspector
Use the MCP Inspector to call tools directly and see raw input/output before wiring this into an agent:
npx @modelcontextprotocol/inspector python server.pyUse it with Claude Desktop
Add to your Claude Desktop MCP config:
{
"mcpServers": {
"food": {
"command": "python",
"args": ["/absolute/path/to/server.py"],
"env": { "SPOONACULAR_API_KEY": "your_key_here" }
}
}
}The agent (stage 2)
agent.py is a command-line agent built on top of this server.
It uses Google Gemini's function-calling API to turn a plain-language question into one or more tool calls, chaining them together when needed — e.g. "find me a quick vegetarian dinner and check if it's healthy" triggers search_recipes, then get_recipe_nutrition on the result, with the agent deciding that sequence on its own from the tool descriptions.
It's written directly against the raw Gemini API and the raw MCP client (rather than an agent framework like LangChain), so the tool-calling loop is fully visible in the code.
Agent setup
# add to your .env, alongside SPOONACULAR_API_KEY
GOOGLE_API_KEY=your_key_here # free at https://aistudio.google.com/apikeyRun the agent
python agent.pyYou don't need to run server.py separately — the agent launches it automatically as a subprocess and talks to it over stdio.
Example session
You: find me a quick vegetarian dinner and check if it's healthy
[calling tool: search_recipes({"query": "vegetarian dinner", "diet": "vegetarian", "max_ready_minutes": 30})]
[calling tool: get_recipe_nutrition({"recipe_id": 123456})]
Gemini: I found a vegetarian stir-fry ready in 25 minutes — it's about
480 calories with a good protein-to-carb balance, so a reasonably
healthy pick for a quick dinner.Roadmap
Stages 1 (MCP server) and 2 (agent) are both built.
Possible future additions: search_recipes_by_diet, get_similar_recipes, convert_ingredient_amount, and a web/chat UI in place of the command-line interface.
Notes
Free-tier Spoonacular quota is limited per day; the server surfaces a clear error if you hit it rather than failing silently.
API keys are read from environment /
.env, never hardcoded.The agent originally targeted Claude's API, then was moved to Gemini's free tier to keep this project cost-free. The MCP server needed zero changes for that swap — only the agent's model-calling logic and tool schema conversion did, since MCP standardizes the tool layer but not the underlying model API.
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that enables users to search for recipes and cooking instructions via the API Ninjas Recipe API. It supports querying specific dishes and provides paginated results for recipe discovery.1MIT
- AlicenseBqualityDmaintenanceAn MCP server that enables AI-powered recipe generation and transformation using natural language, supporting dietary restrictions, allergies, and nutritional goals.217MIT
- FlicenseAqualityDmaintenanceMCP server that provides cooking recipe lookup, classification, and weekly meal planning based on dietary restrictions and allergies.5
- Flicense-qualityBmaintenanceMCP server for discovering and retrieving meal recipes from TheMealDB API, enabling search, random meals, category/ingredient filtering, and full recipe details.
Related MCP Connectors
Recipes MCP — wraps TheMealDB API (free tier, no auth)
Spoonacular food API: recipes, nutrition, ingredients, meal plans. Free 150/day.
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/carleshub/foodmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server