myhealthbox
3.4
The myHealthbox MCP server provides access to a comprehensive database of medical products and healthcare information.
The myHealthbox MCP (Medical Content Provider) server offers access to an extensive database of medicines and healthcare products. With over 4 million items available across 80 countries and information in 45 languages, myHealthbox provides comprehensive data, including product names, active ingredients, dosages, ATC codes, and official documents such as Patient Information Leaflets and Summaries of Product Characteristics.
Features
- {'name': 'Extensive Database', 'description': 'Access a vast collection of medical products and healthcare information.'}
- {'name': 'Multilingual Support', 'description': 'Information available in 45 languages, ensuring global accessibility.'}
- {'name': 'Official Documentation', 'description': 'Retrieve official documents for products, such as Patient Information Leaflets and Safety Data Sheets.'}
- {'name': 'Search Tools', 'description': 'Utilize robust search capabilities to find products, documents, and health alerts.'}
Usage with Different Platforms
python
python
import requests
url = 'https://api.myhealthbox.com/v1/products'
params = {
'language': 'en',
'country': 'US',
'query': 'aspirin'
}
response = requests.get(url, params=params)
if response.status_code == 200:
data = response.json()
print(data)
else:
print('Error:', response.status_code)
javascript
javascript
const axios = require('axios');
const url = 'https://api.myhealthbox.com/v1/products';
const params = {
language: 'en',
country: 'US',
query: 'aspirin'
};
axios.get(url, { params })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error:', error);
});