health_topics
Access evidence-based health information on specific topics using the Healthcare MCP Server. Search for reliable content in English or Spanish to support informed decision-making.
Instructions
Get evidence-based health information on various topics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Language for content (en or es) | en |
topic | Yes | Health topic to search for information |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"default": "en",
"description": "Language for content (en or es)",
"enum": [
"en",
"es"
],
"type": "string"
},
"topic": {
"description": "Health topic to search for information",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}