malnutrition
3.5
The Malnutrition MCP Server provides comprehensive assessments and indicators related to malnutrition, aiding healthcare professionals and researchers.
The Malnutrition MCP Server offers a robust set of tools designed to calculate malnutrition scores and provide anthropometric indicators. These assessments are crucial for understanding and evaluating nutritional health and can aid in the development of intervention strategies.
Features
- {'name': 'Malnutrition Score Calculation', 'description': 'Determine the malnutrition score based on various growth and physical parameters.'}
- {'name': 'Anthropometric Indicators', 'description': 'Access detailed measurements and indicators, which are critical for assessing nutritional status.'}
MCP Tools
- Malnutrition: Calculates malnutrition score and provides anthropometric indicators using parameters like growth references, date of measure, weight, height, sex, and date of birth.
Usage with Different Platforms
python
python
import requests
url = 'http://malnutrition-mcp-server/api/calculate'
data = {
'growth_references': 'WHO',
'date_of_measure': '2023-10-01',
'weight_kg': 70,
'height_cm': 175,
'sex': 'M',
'date_of_birth': '1990-01-01'
}
response = requests.post(url, json=data)
print(response.json())