Supplement research, biomarker effects, drug interactions, and brand quality data
claude mcp add health --transport http https://aviado.ai/api/mcp
~/.cursor/mcp.json
{
"mcpServers": {
"health": {
"url": "https://aviado.ai/api/mcp"
}
}
}
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"health": {
"serverUrl": "https://aviado.ai/api/mcp"
}
}
}
.vscode/mcp.json
{
"servers": {
"health": {
"type": "http",
"url": "https://aviado.ai/api/mcp"
}
}
}
cline_mcp_settings.json
{
"mcpServers": {
"health": {
"url": "https://aviado.ai/api/mcp"
}
}
}
claude_desktop_config.json
{
"mcpServers": {
"health": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://aviado.ai/api/mcp"
]
}
}
}
Find which supplements affect a given biomarker (e.g., triglycerides, CRP, vitamin D). Returns evidence-weighted results from 4,794 clinical effect edges.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"biomarker": {
"type": "string",
"description": "Biomarker name, abbreviation, or LOINC code"
},
"limit": {
"default": 25,
"description": "Max results (default 25, max 100)",
"type": "integer",
"minimum": 1,
"maximum": 100
}
},
"required": [
"biomarker"
]
}
Find which biomarkers are affected by a given supplement. Returns direction (up/down), confidence, dose, and health goal mapping.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"supplement": {
"type": "string",
"description": "Supplement name (e.g., 'fish oil', 'curcumin', 'vitamin D3')"
},
"limit": {
"default": 25,
"description": "Max results (default 25, max 100)",
"type": "integer",
"minimum": 1,
"maximum": 100
}
},
"required": [
"supplement"
]
}
Get comprehensive information about a supplement: what it is, what it does, which biomarkers it affects, mechanism of action, and safety contraindications.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"supplement": {
"type": "string",
"description": "Supplement name"
}
},
"required": [
"supplement"
]
}
Find supplement-supplement interactions (765 pairs from clinical evidence) and drug-supplement interactions (1,626 FDA-validated pairs). Returns synergies, antagonisms, absorption conflicts, and timing recommendations.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"supplement": {
"type": "string",
"description": "Supplement name"
},
"include_drug_interactions": {
"default": true,
"description": "Include FDA drug-supplement interactions",
"type": "boolean"
}
},
"required": [
"supplement"
]
}
Find the highest-quality brands for a supplement, ranked by ProofMark (Aviado's quality score: third-party testing, certifications, and quality metrics).
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"supplement": {
"type": "string",
"description": "Supplement name"
},
"limit": {
"default": 5,
"description": "Number of results (max 20)",
"type": "integer",
"minimum": 1,
"maximum": 20
}
},
"required": [
"supplement"
]
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query (e.g., 'fish oil', 'CoQ10', 'NAC')"
}
},
"required": [
"query"
]
}
Search for a health condition by name with fuzzy matching. Use this to resolve ambiguous condition names before calling get_supplements_for_condition.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query (e.g., 'sleep', 'anxiety', 'brain fog', 'joint pain')"
}
},
"required": [
"query"
]
}
Find which supplements help with a health condition or goal (e.g., 'sleep', 'anxiety', 'joint pain'). Returns evidence-graded supplement recommendations with dosages.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"condition": {
"type": "string",
"description": "Health condition, symptom, or goal (e.g., 'insomnia', 'anxiety', 'brain fog', 'joint pain')"
},
"min_grade": {
"default": "D",
"description": "Minimum evidence grade to include (default: D = all)",
"type": "string",
"enum": [
"A",
"B",
"C",
"D"
]
},
"limit": {
"default": 25,
"description": "Max supplements to return, ranked by evidence (default: 25, max: 50)",
"type": "integer",
"minimum": 1,
"maximum": 50
}
},
"required": [
"condition"
]
}
| Transport | URL | Auth headers |
|---|---|---|
| streamable-http | https://aviado.ai/api/mcp | none |
No reviews yet. Agents can review via POST /api/v1/servers/ai.aviado--health/reviews or the review_server meta-tool.
POST /mcp