
Recipe Finder
- 3 installs
- 107 repo stars
- Updated January 27, 2026
- coleam00/custom-agent-with-skills
Helps with ai & agent building tasks.
About
recipe_finder is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- recipe_finder
- AI & Agent Building
- AI-coding skill
Recipe Finder by the numbers
- 3 all-time installs (skills.sh)
- Ranked #13,655 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/coleam00/custom-agent-with-skills --skill recipe_finderAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3 |
|---|---|
| repo stars | ★ 107 |
| Last updated | January 27, 2026 |
| Repository | coleam00/custom-agent-with-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
Recipe Finder Skill
Find recipes, get nutrition information, and create meal plans using free recipe APIs. Supports searching by ingredients, dietary restrictions, cuisine type, and more.
When to Use
- User asks for recipe suggestions
- User wants to know what to cook with specific ingredients
- User has dietary restrictions (vegetarian, gluten-free, keto, etc.)
- User asks about nutrition or calories in a recipe
- User wants meal planning help
- User asks about cooking instructions or techniques
- User asks "what can I make with..."
Available Operations
1. Recipe Search: Find recipes by keyword, ingredient, or cuisine 2. Ingredient-Based Search: "What can I make with chicken and broccoli?" 3. Dietary Filtering: Filter by diet (vegan, keto, paleo) or intolerances 4. Nutrition Analysis: Get calorie and nutrient breakdown 5. Random Recipe: Get a random recipe for inspiration 6. Recipe Details: Get full instructions, ingredients, and nutrition
Instructions
When a user asks about recipes or cooking:
Step 1: Understand the Query
Identify what the user needs:
- Ingredient-based: "What can I make with [ingredients]?"
- Cuisine search: "Give me Italian recipes"
- Dietary needs: "Keto dinner ideas"
- Specific dish: "How do I make chicken parmesan?"
- Nutrition focused: "Low calorie lunch ideas"
Step 2: Load API Reference
ALWAYS read references/api_reference.md before making API calls. The APIs have specific parameter formats.
Step 3: Choose the Right API
Option A: TheMealDB (Simpler, Completely Free)
- Good for: Basic recipe search, random recipes, category browsing
- URL:
https://www.themealdb.com/api/json/v1/1/ - No API key needed (use "1" as the key)
Option B: Spoonacular (More Powerful, Free Tier)
- Good for: Ingredient search, nutrition, dietary filters
- Requires API key (free tier: 150 points/day)
- More detailed data but limited calls
Step 4: Make the API Call
TheMealDB Example (search by name):
https://www.themealdb.com/api/json/v1/1/search.php?s=chickenSpoonacular Example (search by ingredients):
https://api.spoonacular.com/recipes/findByIngredients?ingredients=chicken,broccoli&number=5&apiKey=YOUR_KEYStep 5: Present Results
Format recipes clearly with:
- Recipe name
- Brief description or cuisine type
- Key ingredients
- Cooking time (if available)
- Dietary info (vegetarian, gluten-free, etc.)
- Link to full recipe or instructions
Dietary Restriction Mappings
| User Says... | API Parameter |
|---|---|
| "vegetarian" | diet=vegetarian |
| "vegan" | diet=vegan |
| "gluten-free" | intolerances=gluten |
| "dairy-free" | intolerances=dairy |
| "keto" or "low-carb" | diet=ketogenic |
| "paleo" | diet=paleo |
| "nut-free" | intolerances=tree nut,peanut |
| "healthy" | maxCalories=500 or diet=whole30 |
Cuisine Types
TheMealDB categories: American, British, Canadian, Chinese, Croatian, Dutch, Egyptian, Filipino, French, Greek, Indian, Irish, Italian, Jamaican, Japanese, Kenyan, Malaysian, Mexican, Moroccan, Polish, Portuguese, Russian, Spanish, Thai, Tunisian, Turkish, Vietnamese
Resources
ALWAYS read these before making API calls:
references/api_reference.md- Complete API documentation for both servicesreferences/dietary_guide.md- Detailed dietary restriction information
Examples
Example 1: Ingredient-Based Search
User asks: "What can I make with chicken, garlic, and lemon?"
1. Load API reference 2. Use TheMealDB search or Spoonacular findByIngredients 3. Return 3-5 recipe suggestions with names and key details
Example 2: Dietary Restriction
User asks: "I need gluten-free dinner ideas"
1. Load API reference 2. Use Spoonacular with intolerances=gluten 3. Or use TheMealDB and filter results manually 4. Highlight that recipes are gluten-free in response
Example 3: Quick Recipe
User asks: "Give me an easy pasta recipe"
1. Search TheMealDB for "pasta" 2. Pick a result with simple ingredients 3. Provide full recipe with ingredients and instructions
Example 4: Nutrition Query
User asks: "How many calories in chicken alfredo?"
1. Search for chicken alfredo recipe 2. Use Spoonacular nutrition endpoint or estimate 3. Provide calorie and macro breakdown per serving
Example 5: Random Inspiration
User asks: "What should I cook tonight?"
1. Use TheMealDB random endpoint: /random.php 2. Present the recipe with ingredients and instructions 3. Offer to find alternatives if they don't like it
Notes
- TheMealDB is completely free with no limits - prefer it for basic searches
- Spoonacular free tier is 150 points/day (searches cost ~1 point each)
- Always check dietary restrictions before recommending recipes
- Cooking times are estimates - actual time varies by skill level
- Ingredient quantities may need scaling based on servings
- When nutrition data isn't available, note that it's an estimate
Recipe API Reference
This skill uses two free recipe APIs: TheMealDB (simpler, unlimited) and Spoonacular (more powerful, limited free tier).
---
TheMealDB API
Completely free, no signup required. Good for basic recipe searches.
Base URL
https://www.themealdb.com/api/json/v1/1Note: Use 1 as the API key for the free tier.
---
Search Endpoints
Search by Name
GET /search.php?s={query}
Search recipes by name.
https://www.themealdb.com/api/json/v1/1/search.php?s=chickenSearch by First Letter
GET /search.php?f={letter}
Get all recipes starting with a letter.
https://www.themealdb.com/api/json/v1/1/search.php?f=cLookup by ID
GET /lookup.php?i={id}
Get full recipe details by ID.
https://www.themealdb.com/api/json/v1/1/lookup.php?i=52772Random Recipe
GET /random.php
Get a single random recipe.
https://www.themealdb.com/api/json/v1/1/random.php---
Filter Endpoints
Filter by Ingredient
GET /filter.php?i={ingredient}
Find recipes containing a specific ingredient.
https://www.themealdb.com/api/json/v1/1/filter.php?i=chicken_breastNote: Returns only id, name, and thumbnail. Use lookup for full details.
Filter by Category
GET /filter.php?c={category}
Filter by meal category.
https://www.themealdb.com/api/json/v1/1/filter.php?c=SeafoodCategories: Beef, Breakfast, Chicken, Dessert, Goat, Lamb, Miscellaneous, Pasta, Pork, Seafood, Side, Starter, Vegan, Vegetarian
Filter by Area/Cuisine
GET /filter.php?a={area}
Filter by cuisine/country.
https://www.themealdb.com/api/json/v1/1/filter.php?a=ItalianAreas: American, British, Canadian, Chinese, Croatian, Dutch, Egyptian, Filipino, French, Greek, Indian, Irish, Italian, Jamaican, Japanese, Kenyan, Malaysian, Mexican, Moroccan, Polish, Portuguese, Russian, Spanish, Thai, Tunisian, Turkish, Unknown, Vietnamese
---
List Endpoints
List All Categories
GET /categories.php
Get all meal categories with descriptions.
List Category Names
GET /list.php?c=list
Get just category names.
List All Areas
GET /list.php?a=list
Get all cuisine areas.
List All Ingredients
GET /list.php?i=list
Get all available ingredients.
---
Response Format
Full Recipe Object
{
"meals": [
{
"idMeal": "52772",
"strMeal": "Teriyaki Chicken Casserole",
"strCategory": "Chicken",
"strArea": "Japanese",
"strInstructions": "Preheat oven to 350...",
"strMealThumb": "https://www.themealdb.com/images/media/meals/wvpsxx1468256321.jpg",
"strYoutube": "https://www.youtube.com/watch?v=4aZr5hZXP_s",
"strIngredient1": "soy sauce",
"strIngredient2": "water",
"strIngredient3": "brown sugar",
"strMeasure1": "3/4 cup",
"strMeasure2": "1/2 cup",
"strMeasure3": "1/4 cup",
"strSource": "https://example.com/recipe",
"strTags": "Meat,Casserole"
}
]
}Note: Ingredients and measures are in separate numbered fields (strIngredient1-20, strMeasure1-20). Empty ingredients should be ignored.
---
Spoonacular API
More powerful with nutrition data and dietary filters. Free tier: 150 points/day.
Base URL
https://api.spoonacular.comAuthentication
All requests require apiKey parameter:
?apiKey=YOUR_API_KEY---
Recipe Search
Complex Search
GET /recipes/complexSearch
Powerful search with many filters.
| Parameter | Description |
|---|---|
query | Search keywords |
cuisine | Cuisine type(s) |
diet | Diet type |
intolerances | Allergies/intolerances |
type | Meal type (main course, dessert, etc.) |
maxReadyTime | Max prep+cook time in minutes |
minCalories / maxCalories | Calorie range |
number | Number of results (1-100) |
offset | Pagination offset |
addRecipeNutrition | Include nutrition (costs more points) |
Example:
https://api.spoonacular.com/recipes/complexSearch?query=pasta&diet=vegetarian&maxReadyTime=30&number=5&apiKey=KEYSearch by Ingredients
GET /recipes/findByIngredients
Find recipes using specific ingredients.
| Parameter | Description |
|---|---|
ingredients | Comma-separated ingredients |
number | Number of results |
ranking | 1=maximize used, 2=minimize missing |
ignorePantry | Ignore common pantry items |
Example:
https://api.spoonacular.com/recipes/findByIngredients?ingredients=chicken,garlic,onion&number=5&apiKey=KEYRandom Recipes
GET /recipes/random
Get random recipes.
| Parameter | Description |
|---|---|
number | How many recipes |
tags | Filter tags (vegetarian, dessert, etc.) |
Example:
https://api.spoonacular.com/recipes/random?number=1&tags=vegetarian,main+course&apiKey=KEY---
Recipe Details
Get Recipe Information
GET /recipes/{id}/information
Get full recipe details including nutrition.
| Parameter | Description |
|---|---|
includeNutrition | Include detailed nutrition |
Example:
https://api.spoonacular.com/recipes/716429/information?includeNutrition=true&apiKey=KEYGet Similar Recipes
GET /recipes/{id}/similar
Find recipes similar to a given one.
https://api.spoonacular.com/recipes/716429/similar?number=5&apiKey=KEY---
Nutrition Endpoints
Nutrition by ID
GET /recipes/{id}/nutritionWidget.json
Get nutrition breakdown for a recipe.
https://api.spoonacular.com/recipes/716429/nutritionWidget.json?apiKey=KEYAnalyze Recipe
POST /recipes/analyze
Analyze a recipe's nutrition from ingredients.
{
"title": "Spaghetti Carbonara",
"servings": 4,
"ingredients": [
"400g spaghetti",
"200g pancetta",
"4 egg yolks",
"100g parmesan"
]
}---
Diet & Intolerance Values
Diets
| Value | Description |
|---|---|
gluten free | No gluten |
ketogenic | Keto diet (high fat, low carb) |
vegetarian | No meat |
lacto-vegetarian | Vegetarian + dairy |
ovo-vegetarian | Vegetarian + eggs |
vegan | No animal products |
pescetarian | Vegetarian + fish |
paleo | Paleo diet |
primal | Primal diet |
low fodmap | Low FODMAP |
whole30 | Whole30 diet |
Intolerances
| Value | Description |
|---|---|
dairy | No milk products |
egg | No eggs |
gluten | No gluten |
grain | No grains |
peanut | No peanuts |
seafood | No seafood |
sesame | No sesame |
shellfish | No shellfish |
soy | No soy |
sulfite | No sulfites |
tree nut | No tree nuts |
wheat | No wheat |
---
Cuisine Types
african, american, british, cajun, caribbean, chinese, eastern european, european, french, german, greek, indian, irish, italian, japanese, jewish, korean, latin american, mediterranean, mexican, middle eastern, nordic, southern, spanish, thai, vietnamese
---
Meal Types
| Type | Description |
|---|---|
main course | Entrees |
side dish | Side dishes |
dessert | Desserts |
appetizer | Starters |
salad | Salads |
bread | Breads |
breakfast | Breakfast items |
soup | Soups |
beverage | Drinks |
sauce | Sauces |
marinade | Marinades |
fingerfood | Finger foods |
snack | Snacks |
drink | Drinks |
---
Point Costs (Free Tier)
The free tier has 150 points/day. Approximate costs:
| Endpoint | Points |
|---|---|
| complexSearch | 1 |
| findByIngredients | 1 |
| random | 1 |
| Recipe information | 1 |
| Nutrition widget | 1 |
| Analyze recipe | 1.5 |
Tip: Use TheMealDB for basic searches to save Spoonacular points for nutrition queries.
---
Error Responses
| Code | Meaning |
|---|---|
| 200 | Success |
| 401 | Invalid API key |
| 402 | Payment required (over quota) |
| 404 | Not found |
| 429 | Rate limit exceeded |
---
Building Recipe Image URLs
TheMealDB
Images are included in responses as strMealThumb.
Spoonacular
Build image URLs:
https://spoonacular.com/recipeImages/{id}-312x231.jpgSizes: 90x90, 240x150, 312x231, 480x360, 556x370, 636x393
Dietary Restrictions Guide
This guide helps you understand common dietary restrictions and how to filter recipes appropriately.
---
Quick Reference Table
| User Says | What It Means | API Filter |
|---|---|---|
| "vegetarian" | No meat or fish | diet=vegetarian |
| "vegan" | No animal products | diet=vegan |
| "gluten-free" | No wheat, barley, rye | intolerances=gluten |
| "dairy-free" | No milk products | intolerances=dairy |
| "keto" / "low-carb" | High fat, very low carb | diet=ketogenic |
| "paleo" | No grains, legumes, dairy | diet=paleo |
| "nut-free" | No tree nuts or peanuts | intolerances=tree nut,peanut |
| "egg-free" | No eggs | intolerances=egg |
| "pescatarian" | Vegetarian + fish | diet=pescetarian |
| "whole30" | No sugar, grains, legumes, dairy | diet=whole30 |
| "healthy" | Usually means low calorie | maxCalories=500 |
| "low sodium" | Reduced salt | Manual filtering |
| "halal" | Islamic dietary laws | Manual filtering |
| "kosher" | Jewish dietary laws | Manual filtering |
---
Detailed Diet Explanations
Vegetarian
Excludes:
- All meat (beef, pork, lamb, poultry)
- Fish and seafood
- Animal-derived gelatin
Includes:
- Eggs (ovo-vegetarian)
- Dairy (lacto-vegetarian)
- Honey
- Plant-based foods
Common substitutions:
- Meat → Tofu, tempeh, seitan, legumes
- Gelatin → Agar-agar
- Chicken broth → Vegetable broth
---
Vegan
Excludes:
- All meat and fish
- Dairy (milk, cheese, butter, cream)
- Eggs
- Honey
- Gelatin
- Some sugars (processed with bone char)
Includes:
- All plant-based foods
- Plant milks (oat, almond, soy)
- Nutritional yeast
Common substitutions:
- Butter → Vegan butter, coconut oil
- Milk → Oat milk, almond milk
- Cheese → Nutritional yeast, vegan cheese
- Eggs → Flax eggs, chia eggs, aquafaba
- Honey → Maple syrup, agave
---
Gluten-Free
Excludes:
- Wheat (bread, pasta, most baked goods)
- Barley
- Rye
- Spelt
- Many sauces (soy sauce contains wheat)
- Beer (unless gluten-free)
Includes:
- Rice
- Corn
- Quinoa
- Oats (if certified gluten-free)
- Potatoes
- All meats, fish, dairy, eggs
- Most vegetables and fruits
Hidden gluten sources:
- Soy sauce → Use tamari (gluten-free soy sauce)
- Worcestershire sauce
- Some salad dressings
- Imitation crab
- Malt vinegar
Common substitutions:
- Pasta → Rice pasta, chickpea pasta
- Flour → Almond flour, rice flour, GF flour blend
- Bread → Gluten-free bread
- Soy sauce → Tamari or coconut aminos
---
Dairy-Free
Excludes:
- Milk
- Cheese
- Butter
- Cream
- Yogurt
- Ice cream
- Whey and casein (hidden in many products)
Includes:
- Plant milks
- Coconut cream
- Vegan cheeses
- All meats, fish, eggs
Hidden dairy sources:
- Many breads contain milk
- Some chips contain whey
- Margarine may contain dairy
- "Non-dairy" creamer may contain casein
Common substitutions:
- Milk → Oat milk, coconut milk, almond milk
- Butter → Olive oil, coconut oil, vegan butter
- Cream → Coconut cream, cashew cream
- Cheese → Nutritional yeast, vegan cheese
---
Ketogenic (Keto)
Macronutrient Target:
- 70-75% fat
- 20-25% protein
- 5-10% carbs (usually <50g/day, strict <20g)
Excludes:
- Sugar and sweeteners (except stevia, erythritol)
- Grains (bread, rice, pasta)
- Most fruits (except berries in moderation)
- Starchy vegetables (potatoes, corn)
- Legumes (beans, lentils)
Includes:
- Meat and fatty fish
- Eggs
- Cheese and cream
- Nuts and seeds
- Low-carb vegetables (leafy greens, broccoli)
- Healthy oils (olive, coconut, avocado)
- Avocados
Keto-friendly recipes typically feature:
- High fat content
- Moderate protein
- Very low net carbs
- Cauliflower as rice/potato substitute
---
Paleo
Philosophy: Eat like our ancestors (hunter-gatherers)
Excludes:
- Grains (wheat, rice, oats)
- Legumes (beans, lentils, peanuts)
- Dairy
- Refined sugar
- Processed foods
- Vegetable oils (canola, soybean)
Includes:
- Meat (preferably grass-fed)
- Fish and seafood
- Eggs
- Vegetables
- Fruits
- Nuts and seeds
- Healthy fats (olive oil, coconut oil, avocado)
Common substitutions:
- Pasta → Zucchini noodles, spaghetti squash
- Rice → Cauliflower rice
- Flour → Almond flour, coconut flour
- Sugar → Honey, maple syrup (in moderation)
---
Low FODMAP
For: People with IBS or digestive issues
FODMAP stands for: Fermentable Oligosaccharides, Disaccharides, Monosaccharides, and Polyols
High FODMAP foods to avoid:
- Onions and garlic
- Wheat
- Many fruits (apples, pears, watermelon)
- Dairy with lactose
- Legumes
- Some sweeteners (honey, high fructose corn syrup)
Low FODMAP alternatives:
- Garlic-infused oil (instead of garlic)
- Green parts of scallions
- Lactose-free dairy
- Gluten-free grains
---
Food Allergies vs. Intolerances
Allergies (Immune Response)
- Can be life-threatening
- Complete avoidance required
- Common: peanuts, tree nuts, shellfish, fish, eggs, milk, wheat, soy
Intolerances (Digestive Issues)
- Uncomfortable but not dangerous
- Small amounts may be tolerable
- Common: lactose, gluten, FODMAPs
When user mentions an allergy, treat it seriously and ensure complete exclusion.
---
The "Big 8" Food Allergens
These account for 90% of food allergies:
1. Milk - Use intolerances=dairy 2. Eggs - Use intolerances=egg 3. Fish - Use intolerances=seafood 4. Shellfish - Use intolerances=shellfish 5. Tree Nuts - Use intolerances=tree nut 6. Peanuts - Use intolerances=peanut 7. Wheat - Use intolerances=wheat 8. Soybeans - Use intolerances=soy
---
Combining Restrictions
Users often have multiple restrictions. Combine filters:
Vegan + Gluten-Free:
diet=vegan&intolerances=glutenKeto + Dairy-Free:
diet=ketogenic&intolerances=dairyMultiple Allergies:
intolerances=peanut,tree nut,dairy---
Tips for Recipe Recommendations
1. Always clarify if restrictions are preferences vs. allergies 2. Check all ingredients - hidden allergens are common 3. Offer substitutions when a recipe almost fits 4. Note cross-contamination risks for severe allergies 5. Respect cultural/religious diets (halal, kosher) even if not in API
---
Common Substitution Cheat Sheet
| Original | Substitution |
|---|---|
| Butter | Olive oil, coconut oil, vegan butter |
| Milk | Oat milk, almond milk, coconut milk |
| Eggs (binding) | Flax egg, chia egg, banana |
| Eggs (leavening) | Aquafaba, baking soda + vinegar |
| Flour | Almond flour, oat flour, GF blend |
| Pasta | Zucchini noodles, rice noodles |
| Rice | Cauliflower rice, quinoa |
| Sugar | Maple syrup, honey, stevia |
| Soy sauce | Tamari, coconut aminos |
| Cream | Coconut cream, cashew cream |