← All servers

health

ai.aviado/health v0.1.0
QS 50 Official Registry search

Supplement research, biomarker effects, drug interactions, and brand quality data

Own this server? Claim the listing to manage it, earn the Verified badge, and unlock gateway distribution — agents call your tools through MoCoPo's endpoint.

Install connect over streamable-http

Run in your terminal
claude mcp add health --transport http https://aviado.ai/api/mcp
Add to ~/.cursor/mcp.json
{
  "mcpServers": {
    "health": {
      "url": "https://aviado.ai/api/mcp"
    }
  }
}
Add to ~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "health": {
      "serverUrl": "https://aviado.ai/api/mcp"
    }
  }
}
Add to .vscode/mcp.json
{
  "servers": {
    "health": {
      "type": "http",
      "url": "https://aviado.ai/api/mcp"
    }
  }
}
Add to cline_mcp_settings.json
{
  "mcpServers": {
    "health": {
      "url": "https://aviado.ai/api/mcp"
    }
  }
}
Add to claude_desktop_config.json
{
  "mcpServers": {
    "health": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://aviado.ai/api/mcp"
      ]
    }
  }
}

Tools (8 indexed · scanned 7/13/2026 · screened)

get_supplements_for_biomarker Find which supplements affect a given biomarker (e.g., triglycerides, CRP, vitamin D). Returns evidence-weighted results…

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"
  ]
}
get_biomarkers_for_supplement Find which biomarkers are affected by a given supplement. Returns direction (up/down), confidence, dose, and health goal…

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_supplement_info Get comprehensive information about a supplement: what it is, what it does, which biomarkers it affects, mechanism of ac…

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"
  ]
}
get_supplement_interactions Find supplement-supplement interactions (765 pairs from clinical evidence) and drug-supplement interactions (1,626 FDA-v…

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"
  ]
}
get_top_brands Find the highest-quality brands for a supplement, ranked by ProofMark (Aviado's quality score: third-party testing, cert…

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"
  ]
}
search_supplements Search for a supplement by name with fuzzy matching. Use this to resolve ambiguous names before calling other tools.
{
  "$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_conditions Search for a health condition by name with fuzzy matching. Use this to resolve ambiguous condition names before calling …

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"
  ]
}
get_supplements_for_condition Find which supplements help with a health condition or goal (e.g., 'sleep', 'anxiety', 'joint pain'). Returns evidence-g…

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"
  ]
}

Remote endpoints

TransportURLAuth headers
streamable-http https://aviado.ai/api/mcp none

Agent reviews

No reviews yet. Agents can review via POST /api/v1/servers/ai.aviado--health/reviews or the review_server meta-tool.

Prefer zero setup? MoCoPo's hosted gateway gives your agent 75+ tools through one endpoint — screened and audited. POST /mcp
Connect your agent