recipe-and-ingredient-analysis

recipe-and-ingredient-analysis

3.5

Recipe and Ingredient Analysis MCP Server is designed to transform plain text ingredients into structured data for recipe apps.

Recipe and Ingredient Analysis is a powerful tool designed to help recipe apps manage ingredients intelligently. It transforms ingredients from plain text into structured, meaningful data in an easy-to-consume format. By using this tool, developers can convert ingredient strings like '2 cups finely chopped red onions' into detailed components such as quantity, unit of measure, food product, and preparation steps.

Features

  • Ingredient Parsing: Turn plain recipe strings into structured JSON data effortlessly.
  • Developer-Friendly: Offers flexible data usage terms with unlimited data retention, no resale restrictions, and zero attribution requirements.
  • Enhance User Experience: Make your recipes searchable, build shopping lists, and create a comprehensive ingredient database.

MCP Tools

  • Parse Ingredients: Parses recipe ingredients into structured data, converting them into a format that can be easily integrated into applications.

Usage with Different Platforms

python

python
import requests

url = 'https://api.zestfuldata.com/parse_ingredients'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}

payload = {
    'ingredient': '2 cups finely chopped red onions'
}

response = requests.post(url, headers=headers, json=payload)

if response.status_code == 200:
    data = response.json()
    print(data)
else:
    print('Error:', response.status_code)