mycookbook-io1

mycookbook-io1

3.5

The MyCookbook.io MCP Server is a tool for parsing and managing online recipes, transforming them into a structured format for easy customization and organization.

The MyCookbook.io MCP Server offers a user-friendly solution for handling recipes from any website by converting them into JSON format. This allows for seamless integration and manipulation in various applications or personal projects. The server is designed to extract essential components of recipes, making it easy to create, customize, and organize digital cookbooks. With features like universal recipe parsing, customizable recipes, and cross-platform access, it caters to both developers and cooking enthusiasts.

Features

  • {'name': 'Universal Recipe Parsing', 'description': 'Parse recipes from any website, extracting key components such as name, ingredients, instructions, yield, preparation time, cooking time, and images.'}
  • {'name': 'Customizable Recipes', 'description': 'Edit and personalize recipes by modifying ingredients, instructions, and other sections to suit your preferences.'}
  • {'name': 'Organize with Cookbooks', 'description': 'Create and manage cookbooks by dragging and dropping recipes for easy organization and access.'}
  • {'name': 'Cross-Platform Access', 'description': 'Access your recipes from any device, whether on a mobile or desktop platform.'}
  • {'name': 'Premium Hardcover Cookbooks', 'description': 'Transform digital recipes into beautifully bound hardcover cookbooks, delivered directly to your door.'}

MCP Tools

  • Parse the Recipe: Parses the recipe from the entered URL and converts it into a structured JSON format.

Usage with Different Platforms

mcp

python
import requests

url = 'https://example.com/recipe'
response = requests.get(f'https://mycookbook.io/api/parse?url={url}')
recipe_json = response.json()
print(recipe_json)