AI Tools
Generate personalized 7-day Mediterranean diet meal plans with complete nutritional analysis and shopping lists
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/mediterranean-diet-planner' \
-H 'Content-Type: application/json' \
-d '{"dietaryRestrictions":"Enter any dietary restrictions or allergy information...","preferences":"Enter your food likes or dislikes...","mealPrepStyle":"fresh","servingSize":"2","language":"en"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/mediterranean-diet-planner| Name | Type | Required | Description |
|---|---|---|---|
| dietaryRestrictions | textarea | No | Such as vegetarian, gluten-free, dairy-free, nut allergies, seafood allergies, etc. This will help adjust the meal plan to meet your special needs. |
| preferences | textarea | No | For example: prefer fish, dislike lamb, like spicy food, prefer simple cooking, etc. This helps personalize your meal plan. |
| mealPrepStyle | select | No | — |
| servingSize | select | No | — |
| language | select |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-mediterranean-diet-planner": {
"name": "mediterranean-diet-planner",
"description": "Generate personalized 7-day Mediterranean diet meal plans with complete nutritional analysis and shopping lists",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=mediterranean-diet-planner",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "mediterranean-diet-planner",
"arguments": {
"dietaryRestrictions": "Enter any dietary restrictions or allergy information...",
"preferences": "Enter your food likes or dislikes...",
"mealPrepStyle": "fresh",
"servingSize": "2",
"language": "en"
}
}
}Questions or issues? Contact [email protected]
| No |
| — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}